forked from watson-developer-cloud/food-coach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.16 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
78
79
80
81
{
"name": "@ibm-watson/food-coach",
"description": "A simple Node.js based web app which shows how to use the Watson Assistant 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.5.1",
"body-parser": "^1.18.3",
"cloudant": "^1.10.0-NOTICE",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-csv": "^0.6.0",
"extend": "^3.0.2",
"json-query": "^2.2.2",
"nano": "^6.4.4",
"twitter-node-client": "^0.0.6",
"uuid": "^3.3.2",
"vcap_services": "^0.4.0",
"watson-developer-cloud": "^3.7.0"
},
"devDependencies": {
"browser-sync": "^2.24.6",
"casperjs": "^1.1.4",
"eslint": "^5.2.0",
"graceful-fs": "^4.1.11",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^3.9.4",
"gulp-concat": "^2.6.1",
"gulp-iconfont": "^10.0.1",
"gulp-iconfont-css": "2.1.0",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.3.0",
"gulp-sass": "^4.0.1",
"gulp-uglify": "^3.0.0",
"jest": "^23.4.1",
"phantomjs-prebuilt": "^2.1.16",
"run-sequence": "^2.2.1",
"supertest": "^3.1.0",
"wrench": "^1.5.9"
},
"engines": {
"node": ">= 8.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/food-coach.git"
},
"contributors": [
{
"name": "Vibha Sinha",
"email": "vibha.sinha@us.ibm.com"
},
{
"name": "April Webster",
"email": "awebster@us.ibm.com"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}