forked from watson-developer-cloud/assistant-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.27 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": "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-integration": "casperjs test ./test/integration/test.*.js",
"test-integration-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-integration-runner",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha test/unit",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/conversation-simple.git"
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^2.0.0",
"express": "^4.16.1",
"express-basic-auth": "^1.1.3",
"watson-developer-cloud": "^2.40.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"casperjs": "^1.1.4",
"codecov": "^1.0.1",
"eslint": "^2.8.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.15",
"supertest": "^1.2.0"
},
"engines": {
"node": "7.8.0",
"npm": "4.2.0"
}
}