-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.06 KB
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": "boolbuilder-js",
"version": "0.1.2",
"description": "querybuilder-like object to elasticsearch bool query object parser/transformer",
"author": "Saxon W. Stiller",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepack": "NODE_ENV=production babel --presets react-app src -d lib --copy-files",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"rootDir": "src"
},
"lint-staged": {
"linters": {
"src/**/*.{js,jsx,json}": [
"standard --fix --parser babel-eslint",
"git add"
]
}
},
"standard": {
"parser": "babel-eslint",
"globals": [
"expect",
"test"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-preset-react-app": "^3.1.1",
"husky": "^0.15.0-rc.8",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"regenerator-runtime": "^0.11.1",
"standard": "^11.0.0"
}
}