forked from crcn/sift.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@mixmaxhq/sift",
"description": "mongodb query style array filtering",
"version": "1.0.1",
"repository": "crcn/sift.js",
"author": "Eli Skeggs <[email protected]> (https://mixmax.com)",
"contributors": [
{
"name": "Craig Condon",
"email": "[email protected]",
"url": "http://crcn.io"
}
],
"license": "MIT",
"typings": "./index.d.ts",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/register": "^7.4.0",
"bson": "^4.7.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.2.1",
"immutable": "^3.7.6",
"jest": "^24.7.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rollup": "^1.8.0"
},
"main": "./dist/index.js",
"module": "./src/index.js",
"es2015": "./src/index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"ci": "npm run lint && npm test",
"lint": "eslint .",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"index.d.ts"
]
}