-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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
51
52
{
"private": true,
"author": "Dustin Deus <deusdustin@gmail.com> (http://www.starptech.de)",
"scripts": {
"precommit": "pretty-quick --staged && npm run lint && npm run test",
"test:ndb": "mocha -t 5000 --exit ./test/**.spec.js",
"test": "nyc mocha -t 5000 --exit ./test/**.spec.js",
"test:mongodb": "nyc mocha -t 5000 --exit ./test/**.spec.mongodb.js",
"test-watch": "mocha -t 5000 -w --exit",
"bootstrap": "lerna bootstrap",
"format": "pretty-quick",
"setup": "npm i && npm run bootstrap",
"publish": "lerna publish",
"lint": "eslint ./**/*.js",
"coverage": "npm run test && nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lerna": "lerna"
},
"devDependencies": {
"code": "^5.2.0",
"concurrently": "^3.6.1",
"coveralls": "^3.0.2",
"delay": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-hemera": "^0.0.6",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"fastify": "^1.9.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lerna": "^2.11.0",
"mocha": "^5.2.0",
"mongo-in-memory": "0.0.5",
"nock": "^9.4.2",
"nyc": "^12.0.2",
"p-event": "^2.1.0",
"prettier": "^1.14.0",
"pretty-quick": "^1.6.0",
"sinon": "^6.1.4",
"split2": "^2.2.0",
"ws": "^6.0.0"
},
"dependencies": {
"mongodb": "^3.1.1"
}
}