-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.53 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
{
"author": "Paul Serby <[email protected]>",
"name": "save-mongodb",
"description": "mongodb persistence engine for save",
"version": "2.1.0",
"tags": [
"database",
"save",
"persistence"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "[email protected]:serby/save-mongodb"
},
"license": "ISC",
"main": "lib/mongodb-engine",
"scripts": {
"lint": "eslint -f unix .",
"inspect": "jsinspect",
"pretest": "npm run lint && npm run inspect",
"test": "nyc ./node_modules/.bin/_mocha test",
"prettier": "prettier --write '**/*.js'",
"posttest": "(nyc check-coverage --statements 85 --branches 75 --functions 90 --lines 90 && rm -rf coverage) || nyc report --reporter=html && echo Look at 'coverage/index.html' to find out more"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"event-stream": "^4.0.1",
"mongodb": "^3.2.7",
"nyc": "^14.1.1",
"through2": "^3.0.1"
},
"devDependencies": {
"async": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jsinspect": "^0.12.6",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"save": "^2.4.0",
"should": "^13.2.3",
"stream-assert": "^2.0.3"
}
}