forked from doconnor78/conversation-simple-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "conversation-simple",
"description": "A simple Node.js based web app which shows how to use the Conversation API to recognize user intents.",
"version": "0.1.1",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"license": "Apache-2.0",
"dependencies": {
"basic-auth-connect": "1.0.0",
"dotenv": "^2.0.0",
"express": "4.13.4",
"body-parser": "1.15.1",
"watson-developer-cloud": "^1.12.2",
"cloudant": "1.4.1",
"express-csv": "0.6.0",
"nano" : "*",
"uuid": "2.0.2",
"vcap_services": "^0.2.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"codecov": "^1.0.1",
"eslint": "^2.8.0",
"eslint-config-airbnb-es5": "^1.0.9",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
},
"engine": {
"node": ">= 4.2.4"
}
}