-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "@ibm-watson/assistant-simple",
"description": "A simple Node.js based web app which shows how to use the Watson Assistant 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-integration-runner",
"test-unit": "jest test/unit --coverage",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/assistant-simple.git"
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"python-shell": "^0.5.0",
"watson-developer-cloud": "^3.7.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"casperjs": "^1.1.4",
"codecov": "^3.0.4",
"eslint": "^5.1.0",
"jest": "^23.4.1",
"phantomjs-prebuilt": "^2.1.16",
"supertest": "^3.1.0"
}
}