forked from devfacet/natsboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "natsboard",
"version": "5.0.0",
"description": "Dashboard for monitoring NATS",
"main": "index.js",
"bin": {
"natsboard": "bin/natsboard"
},
"scripts": {
"lint": "jshint --reporter node_modules/jshint-stylish lib/* test/*",
"lint:build": "jshint --reporter checkstyle lib/* test/* > reports/jshint-checkstyle.xml",
"depcheck": "dependency-check . lib/*",
"depcheck:unused": "dependency-check ./package.json --unused --no-dev lib/*",
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' istanbul cover _mocha -- -R mocha-multi && istanbul check-coverage",
"test:coveralls": "cat reports/coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"test": "npm run lint && npm run test:unit",
"start": "bin/natsboard"
},
"repository": {
"type": "git",
"url": "https://github.com/devfacet/natsboard.git"
},
"keywords": [
"natsboard",
"nats",
"dashboard",
"monitoring"
],
"author": "devfacet",
"license": "MIT",
"homepage": "http://github.com/devfacet/natsboard",
"dependencies": {
"express": "4.15.x",
"request": "2.80.x",
"utilex": "3.x.x",
"ws": "3.x.x"
},
"devDependencies": {
"chai": "3.5.x",
"jshint": "2.9.x",
"jshint-stylish": "2.2.x",
"mocha": "3.2.x",
"mocha-multi": "0.10.x",
"dependency-check": "2.8.x",
"istanbul": "0.4.x",
"nats": "0.7.x"
}
}