forked from hemerajs/hemera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nats-hemera",
"author": "Dustin Deus (https://github.com/StarpTech)",
"homepage": "https://hemerajs.github.io/hemera/",
"repository": {
"url": "git@github.com:hemerajs/hemera.git",
"type": "git"
},
"keywords": [
"micro",
"service",
"microservice",
"micro-service",
"microservices",
"micro-services",
"services",
"micro services",
"micro service",
"framework",
"minimum",
"viable",
"product",
"toolkit",
"startup",
"nats",
"messaging",
"pubsub",
"publish",
"subscribe",
"queue",
"distributed",
"queueing"
],
"scripts": {
"setup": "npm i && lerna bootstrap && lerna run build",
"clean": "lerna clean",
"release": "lerna publish -i",
"test": "lerna run build && nyc mocha -t 5000 \"./test/**/*.js\" \"./packages/hemera-zipkin/test/**/*.js\"",
"coverage": "npm run test && nyc report --reporter=html",
"build:watch": "lerna run build && chokidar \"./packages/hemera/lib/**/*.js\" -c \"lerna run build\"",
"ci": "lerna run build && nyc mocha -t 5000 \"./test/**/*.js\" \"./packages/hemera-zipkin/test/**/*.js\" && nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"devDependencies": {
"chokidar-cli": "1.2.x",
"code": "4.0.x",
"coveralls": "2.11.x",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"hemera-testsuite": "1.0.x",
"istanbul": "0.4.x",
"joi": "10.0.x",
"lerna": "2.0.0-beta.37",
"mocha": "3.2.x",
"mocha-lcov-reporter": "1.2.x",
"nats": "0.7.x",
"nyc": "10.0.x",
"sinon": "1.17.x"
}
}