forked from benco1967/jsonpatch-to-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "jsonpatch-to-mongodb",
"version": "0.3.0",
"description": "Convert JSON patches into a MongoDB update",
"author": "Lucas Hrabovsky <[email protected]> (http://imlucas.com)",
"license": "MIT",
"homepage": "http://github.com/mongodb-js/jsonpatch-to-mongodb",
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/jsonpatch-to-mongodb.git"
},
"keywords": [
"mongodb.js",
"mongodb",
"jiff",
"jsonpatch",
"json patch mongodb"
],
"scripts": {
"test": "mocha",
"lint": "eslint *.js"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "~3.1.2",
"prettier": "^1.15.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}