forked from devfacet/natsboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "natsboard",
"version": "4.0.2",
"description": "Dashboard for monitoring NATS",
"keywords": [
"natsboard",
"nats",
"dashboard",
"monitoring"
],
"homepage": "http://github.com/fatihcode/natsboard",
"repository": {
"type": "git",
"url": "https://github.com/fatihcode/natsboard.git"
},
"bugs": {
"url": "http://github.com/fatihcode/natsboard/issues"
},
"license": "MIT",
"private": false,
"author": {
"name": "fatih",
"url": "http://github.com/fatihcode"
},
"contributors": [],
"main": "./index.js",
"bin": {
"natsboard": "bin/natsboard"
},
"scripts": {
"lint": "jshint --reporter node_modules/jshint-stylish lib/*.js test/*.js",
"lint:build": "mkdir -p reports/ && jshint --reporter checkstyle lib/*.js test/*.js > 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 test/test-*.js --timeout 10000 && istanbul check-coverage",
"test": "npm run depcheck && npm run depcheck:unused && npm run lint && npm run test:unit",
"start": "bin/natsboard"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"express": "4.14.x",
"request": "2.75.x",
"utilex": "3.0.x",
"nodejs-websocket": "1.7.x"
},
"devDependencies": {
"chai": "3.5.x",
"jshint": "2.9.x",
"jshint-stylish": "2.2.x",
"mocha": "2.5.x",
"mocha-multi": "0.9.x",
"dependency-check": "2.6.x",
"istanbul": "0.4.x"
}
}