forked from IBM/watson-assistant-slots-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "watson-conversation-slots-intro",
"description": "A simple demonstration of Watson Conversation Slots feature.",
"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/IBM/watson-conversation-slots-intro"
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"metrics-tracker-client": "^0.1.9",
"vcap_services": "^0.2.0",
"watson-developer-cloud": "^2.31.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"casperjs": "^1.1.3",
"codecov": "^1.0.1",
"eslint": "^3.14.1",
"eslint-config-google": "^0.7.1",
"eslint-config-prettier": "^2.1.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.13",
"prettier": "^1.1.0",
"supertest": "^1.2.0"
},
"engines": {
"node": ">= 6.9.x",
"npm": "> 3.10.x"
}
}