-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "hystrix-dashboard",
"version": "1.0.3",
"description": "A UI part of java hystrix dashboard for nodejs apps",
"main": "index.js",
"scripts": {
"update-hystrix": "rm -rf Hystrix && rm -rf webapp && git clone -n https://github.com/Netflix/Hystrix && cd Hystrix && git checkout d3e099121127dc9a2748c5d581794cd9e3867b6a && cd .. && cp -r ./Hystrix/hystrix-dashboard/src/main/webapp .",
"prepublish": "npm run update-hystrix",
"test": "npm run update-hystrix && ./node_modules/.bin/mocha test",
"test-only": "./node_modules/.bin/mocha test",
"test-coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimichgh/hystrix-dashboard.git"
},
"keywords": [
"hystrix",
"dashboard",
"ui"
],
"author": "Dmytro Semenov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimichgh/hystrix-dashboard/issues"
},
"homepage": "https://github.com/dimichgh/hystrix-dashboard#readme",
"devDependencies": {
"express": "^4.15.2",
"hystrixjs": "^0.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"supertest": "^3.0.0"
},
"dependencies": {
"async": "^2.4.1",
"hoek": "^4.1.1",
"rxjs": "^5.4.0",
"wreck": "^12.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}