-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.8 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
63
64
{
"name": "hapi-hemera",
"description": "Hemera micro-services plugin for Hapi",
"version": "6.0.0",
"repository": "git://github.com/hemerajs/hapi-hemera",
"main": "lib/index.js",
"author": "Dustin Deus (https://github.com/StarpTech)",
"keywords": [
"hapi",
"plugin",
"microservices",
"hemera"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"hoek": "6.1.2",
"nats": "^1.2.2",
"nats-hemera": "^7.0.0",
"tinysonic": "^1.3.0"
},
"peerDependencies": {
"hapi": "^17.2.3 < 19.0.0"
},
"devDependencies": {
"catbox-memory": "^4.0.1",
"code": "^5.2.4",
"coveralls": "^3.0.3",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-hemera": "^1.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"hapi": "^18.1.0",
"hemera-plugin": "^2.0.0",
"hemera-testsuite": "^4.1.0",
"istanbul": "^0.4.5",
"joi": "^14.3.1",
"mocha": "^6.0.2",
"mocha-lcov-reporter": "^1.3.0",
"np": "^4.0.2",
"prettier": "^1.16.4",
"sinon": "^7.2.7"
},
"scripts": {
"test": "mocha --exit -t 5000 --recursive",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec -t 5000 --recursive",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report text-lcov -- -R spec | node ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint .",
"format": "prettier --write ./lib/**/*.js ./test/**/*.js",
"patch": "np patch --yolo",
"minor": "np minor --yolo",
"major": "np major --yolo"
},
"license": "MIT"
}