forked from aarora91/movie-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "movie-assistant",
"version": "0.5.1",
"description": "A sample nodejs app for Bluemix that shows how to combine Natural Language Classifier with Dialog",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/conversational-agent-application-starter-kit.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/conversational-agent-application-starter-kit/issues"
},
"scripts": {
"start": "node server.js",
"build": "gulp build",
"test": "npm run jshint && (npm run codecov || true)",
"jshint": "jshint --exclude ./node_modules/",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha && codecov"
},
"engines": {
"node": ">=4.2.1"
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.13.2",
"express": "^4.12.2",
"express-rate-limit": "^2.1.0",
"express-secure-only": "^0.2.1",
"helmet": "^2.0.0",
"moment": "^2.13.0",
"q": "^1.4.1",
"request": "^2.72.0",
"trim": "0.0.1",
"watson-developer-cloud": "^1.9.3"
},
"devDependencies": {
"codecov": "^1.0.1",
"istanbul": "^0.4.2",
"del": "^2.2.0",
"gulp": "^3.8.10",
"gulp-angular-gettext": "^2.1.0",
"gulp-angular-templatecache": "^1.4.2",
"gulp-autoprefixer": "^3.1.0",
"gulp-bower": "0.0.13",
"gulp-cache": "^0.4.2",
"gulp-debug": "^2.1.2",
"gulp-env": "^0.4.0",
"gulp-if": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-nodemon": "^2.1.0",
"gulp-preprocess": "^2.0.0",
"gulp-sequence": "^0.4.4",
"gulp-size": "^2.0.0",
"gulp-useref": "^1.3.0",
"gulp-util": "^3.0.1",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"run-sequence": "^1.2.1",
"supertest": "^1.2.0"
}
}