-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "hemera-testsuite",
"version": "4.1.0",
"description": "Helper library to write tests against NATS.",
"main": "index.js",
"scripts": {
"lint": "eslint ./**/*.js",
"test": "nyc mocha -t 5000 --exit ./test/**/*.js",
"coverage": "npm run test && nyc report --reporter=html",
"patch": "np patch --yolo",
"minor": "np minor --yolo",
"major": "np major --yolo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hemerajs/hemera-testsuite.git"
},
"engines": {
"node": ">=6.0.0"
},
"author": "Dustin Deus (https://github.com/StarpTech)",
"license": "ISC",
"bugs": {
"url": "https://github.com/hemerajs/hemera-testsuite/issues"
},
"homepage": "https://github.com/hemerajs/hemera-testsuite#readme",
"dependencies": {
"eventemitter2": "5.0.x"
},
"devDependencies": {
"code": "^4.1.0",
"eslint": "^4.19.1",
"eslint-config-hemera": "0.0.6",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nats": "^0.8.10",
"nats-hemera": "^5.7.0",
"np": "^3.0.1",
"nyc": "^11.8.0",
"prettier": "^1.13.3"
}
}