forked from gw/decidekick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tradeoff-analytics-demo",
"version": "2.0.1",
"description": "A sample nodejs app for Bluemix that use the Tradeoff Analytics service",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/tradeoff-analytics-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "Eva Xiaohui Luo",
"email": "[email protected]"
},
{
"name": "David Boaz"
},
{
"name": "Nathan Friedly",
"email": "[email protected]",
"url": "http://nfriedly.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/tradeoff-analytics-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"test": "npm run lint && npm run test-integration",
"lint": "eslint .",
"autofix": "eslint --fix .",
"test-integration": "istanbul cover ./node_modules/mocha/bin/_mocha",
"codecov": "npm run test && (codecov || true)"
},
"dependencies": {
"body-parser": "^1.13.2",
"cf-deployment-tracker-client": "0.1.1",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"dotenv": "^2.0.0",
"ejs": "^2.3.4",
"express": "^4.12.2",
"express-rate-limit": "^2.1.2",
"express-secure-only": "^0.2.1",
"helmet": "^2.1.1",
"log4js": "^0.6.33",
"request": "^2.69.0",
"underscore": "1.8.3",
"watson-developer-cloud": "^2.2.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.4.0",
"istanbul": "^0.4.2",
"mocha": "^3.0.2",
"supertest": "^2.0.0"
}
}