-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
executable file
·56 lines (56 loc) · 1.33 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
{
"name": "realtime-tone",
"version": "1.1.0",
"description": "Analyze the tone of spoken words in real time using Bluemix and Watson",
"scripts": {
"start": "node app.js",
"build": "browserify src/index.js | uglifyjs -nc > public/js/index.js",
"watch": "watchify -v -d -o public/js/index.js src/index.js",
"postinstall": "bower install --alow-root && gulp"
},
"dependencies": {
"express": "4.13.x",
"body-parser": "1.14.x",
"watson-developer-cloud": "1.8.x",
"cfenv": "1.0.x",
"bower": "1.6.x",
"gulp": "3.5.x",
"cf-deployment-tracker-client": "0.0.x"
},
"devDependencies": {
"browserify": "^12.0.1",
"browserify-shim": "^3.8.12",
"watchify": "^3.6.1",
"uglifyjs": "^2.4.10"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Bluemix/real-time-tone-analysis.git"
},
"bugs": {
"url": "https://github.com/IBM-Bluemix/real-time-tone-analysis/issues"
},
"browserify-shim": {
"jquery": "global:jQuery"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"engines": {
"node": "0.12.x"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "Jake Peyser",
"email": "[email protected]"
},
{
"name": "Anton McConville",
"email": "[email protected]"
}
],
"license": "Apache-2.0"
}