-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "recollect-array-js",
"description": "A simple and lightweight way to filter array using JavaScript",
"version": "1.0.7",
"author": "Thadeu Esteves<[email protected]>",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"repository": {
"url": "https://github.com/thadeu/recollect-array-js"
},
"files": [
"dist"
],
"keywords": [
"metaprogramming",
"array conditions",
"filter collection",
"filter array",
"ransack",
"filtering",
"search array"
],
"scripts": {
"test": "npx jest --detectOpenHandles",
"build": "rm -rf dist && microbundle src/index.ts"
},
"devDependencies": {
"@sucrase/jest-plugin": "^3.0.0",
"@types/jest": "^29.5.0",
"@types/lodash.chunk": "^4.2.7",
"@types/lodash.filter": "^4.6.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.isempty": "^4.4.7",
"@types/lodash.last": "^3.0.7",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"sucrase": "^3.31.0",
"typescript": "4.6"
},
"dependencies": {
"lodash.chunk": "^4.2.0",
"lodash.filter": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.9",
"lodash.isplainobject": "^4.0.6",
"lodash.last": "^3.0.0"
}
}