-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "IWIBot",
"description": "The directory's public, routers, views and bin are the Webserver part of the IWIBot. In the directory Openwhisk are all actions placed which should be deployed to Openwhisk",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/Nickkr/IWIbot.git"
},
"scripts": {
"start": "node ./bin/www.js",
"test": "grunt",
"browserify": "browserify ./public/javascripts/main.js -o ./public/javascripts/bundle.js"
},
"contributors": [
{"name": "Niklas Kreutzarek"},
{"name": "Armin Kunkel"}
],
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.17.2",
"browserify": "^14.4.0",
"cookie-parser": "^1.4.3",
"debug": "^2.6.8",
"express": "^4.15.3",
"morgan": "^1.8.2",
"pug": "^2.0.0-rc.2",
"request": "^2.81.0",
"serve-favicon": "^2.4.3",
"watson-developer-cloud": "^2.32.1",
"watson-speech": "^0.33.1"
},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-nodeunit": "~1.0.0",
"grunt-contrib-uglify": "~3.0.1",
"grunt-contrib-watch": "^1.0.0",
"source-map": "^0.5.6"
}
}