-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 823 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "ts-array-filter",
"version": "1.1.0",
"description": "A TypeScript library that provides a simple and intuitive .where(...) method for filtering arrays based on specified filters.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthurkowalsky/ts-array-filter.git"
},
"keywords": [
"array",
"filter",
"where",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/arthurkowalsky/ts-array-filter/issues"
},
"homepage": "https://github.com/arthurkowalsky/ts-array-filter#readme",
"devDependencies": {
"typescript": "^4.9.5",
"jest": "^29.5.0",
"ts-jest" : "^29.1.0",
"@types/jest": "^29.5.0"
}
}