forked from germanattanasio/audio-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.88 KB
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
{
"name": "video-analysis",
"version": "0.5.0",
"description": "A sample nodejs app for Bluemix that combines Speech to Text with Concept Insights to retrieve concepts from videos",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/audio-analysis-application-starter-kit.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "James Zhang",
"email": "jzhang300@us.ibm.com"
},
{
"name": "Eva Xiaohui Luo",
"email": "evaluo_xhl@us.ibm.com"
},
{
"name": "German Attanasio Ruiz",
"email": "germanatt@us.ibm.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/audio-analysis-application-starter-kit/issues"
},
"browserify-shim": {
"jquery": "global:jQuery"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"scripts": {
"start": "node app.js",
"build-debug": "browserify src/index.js > public/js/index.js && browserify src/dashboard.js > public/js/dashboard.js",
"build": "browserify src/index.js | uglifyjs -nc > public/js/index.js && browserify src/dashboard.js | uglifyjs -nc > public/js/dashboard.js",
"watch": "watchify -v -d -o public/js/index.js src/index.js",
"postinstall": "npm run build"
},
"dependencies": {
"async": "1.5.2",
"body-parser": "^1.14.2",
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"ejs": "^2.3.4",
"errorhandler": "^1.4.1",
"express": "^4.13.4",
"express-rate-limit": "^2.1.0",
"express-secure-only": "^0.2.1",
"helmet": "^1.1.0",
"jquery": ">=2.1",
"jsdom": "3.1.2",
"request": "2.69.0",
"uglifyjs": "^2.4.10",
"vcap_services": "^0.1.7",
"watchify": "^3.6.1",
"watson-developer-cloud": "^1.1.2",
"watson-speech": "^0.7.5"
},
"engines": {
"node": "^4.2.4",
"npm": "3.5.3"
}
}