forked from microservices-demo/front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "microservices-demo-front-end",
"version": "0.0.1",
"description": "Front end for microservices demo application.",
"main": "server.js",
"scripts": {
"test": "istanbul cover node_modules/.bin/_mocha -- test/*_test.js test/api/*_test.js",
"coverage": "istanbul cover --report cobertura node_modules/.bin/_mocha -- test/*_test.js test/api/*_test.js && mocha test/*_test.js test/api/*_test.js --reporter mocha-junit-reporter --reporter-options mochaFile=./results/test-results.xml",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/weaveworks/microservices-demo"
},
"contributors": [
"Ian Crosby <[email protected]>",
"Carlos León <[email protected]> (carlosleon.info)"
],
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.1",
"cookie-parser": "^1.4.3",
"express": "^4.13.4",
"express-session": "^1.13.0",
"finalhandler": "^0.4.1",
"request": "^2.72.0",
"serve-static": "^1.10.2",
"prom-client": "^6.3.0",
"morgan": "^1.7.0",
"connect-redis": "^3.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"sinon": "^1.17.5",
"mocha": "^3.0.0",
"mocha-junit-reporter": "^1.12.1",
"istanbul": "^0.4.4",
"mongodb": "^2.2.5"
}
}