forked from watson-developer-cloud/food-coach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "food-coach",
"description": "A simple Node.js based web app which shows how to use the Conversation API to recognize user intents.",
"version": "0.2.1",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test-unit": "jest ./test/unit",
"test-casper": "casperjs test ./test/test.webui.js",
"test-casper-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-casper-runner",
"lint": "eslint .",
"codecov": "npm run test && (codecov || true)",
"autofix": "eslint --fix .",
"validate": "npm ls"
},
"license": "Apache-2.0",
"dependencies": {
"basic-auth-connect": "^1.0.0",
"bluebird": "^3.4.1",
"body-parser": "^1.18.3",
"cloudant": "^1.4.1",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-csv": "^0.6.0",
"extend": "^3.0.0",
"json-query": "^2.1.0",
"nano": "^6.4.4",
"twitter-node-client": "^0.0.6",
"uuid": "^3.2.1",
"vcap_services": "^0.3.4",
"watson-developer-cloud": "^3.4.1"
},
"devDependencies": {
"browser-sync": "^2.19.0",
"casperjs": "^1.1.1",
"eslint": "^4.19.1",
"graceful-fs": "^4.1.6",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-clean": "^0.3.2",
"gulp-clean-css": "^2.3.2",
"gulp-concat": "^2.6.0",
"gulp-iconfont": "^1.0.0",
"gulp-iconfont-css": "0.0.9",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.2.3",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^2.0.0",
"jest": "^22.4.3",
"phantomjs-prebuilt": "^2.1.12",
"run-sequence": "^1.2.2",
"supertest": "^2.0.0",
"wrench": "^1.5.9"
},
"engines": {
"node": ">= 8.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watson-developer-cloud/food-coach.git"
},
"contributors": [
{
"name": "Vibha Sinha",
"email": "[email protected]"
},
{
"name": "April Webster",
"email": "[email protected]"
}
]
}