forked from IBM/watson-assistant-slots-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "watson-conversation-slots-intro",
"description": "A simple demonstration of Watson Conversation Slots feature.",
"version": "1.1.0",
"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 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/IBM/watson-conversation-slots-intro"
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"vcap_services": "^0.6.0",
"watson-developer-cloud": "^3.15.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"casperjs": "^1.1.4",
"codecov": "^3.1.0",
"eslint": "^5.10.0",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"prettier": "^1.15.3",
"supertest": "^3.3.0"
},
"engines": {
"node": ">= 6.9.x",
"npm": "> 3.10.x"
}
}