-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.48 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
54
55
56
57
58
59
60
61
62
{
"name": "@candis/mongo-selector-simplifier",
"version": "0.1.1",
"description": "Algorithmic MongoDB selector simplifier",
"main": "lib/index.js",
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CandisIO/mongo-selector-simplifier.git"
},
"bugs": {
"url": "https://github.com/CandisIO/mongo-selector-simplifier/issues"
},
"homepage": "https://github.com/CandisIO/mongo-selector-simplifier#readme",
"scripts": {
"build": "babel src/ -d lib/ --ignore __tests__,__mocks__",
"prepublish": "npm run build",
"test": "jest",
"typecheck": "flow"
},
"keywords": [
"mongo",
"mongodb",
"query",
"selector",
"selector-simplifier",
"selector-simplification"
],
"author": "Florian Nagel <florian@candis.io> (https://candis.io)",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.77.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"lint-staged": "^7.2.0",
"prettier": "1.13.7",
"regenerator-runtime": "^0.12.0"
}
}