forked from watson-developer-cloud/speech-to-text-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "SpeechToTextBrowserStarterApp",
"version": "0.2.1",
"description": "A sample browser app for Bluemix that use the speech-to-text service, fetching a token via Node.js",
"dependencies": {
"body-parser": "~1.10.2",
"connect": "^3.3.5",
"errorhandler": "~1.2.4",
"express": "~4.10.8",
"harmon": "^1.3.1",
"http-proxy": "^1.11.1",
"request": "~2.53.0",
"transformer-proxy": "^0.3.1"
},
"engines": {
"node": ">=0.10"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/speech-to-text-browser.git"
},
"author": "IBM Corp.",
"browserify-shim": {
"jquery": "global:jQuery"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
},
{
"name": "Daniel Bolano",
"email": "[email protected]"
},
{
"name": "Britany L. Ponvelle",
"email": "[email protected]"
},
{
"name": "Eric S. Bullington",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/speech-to-text-browser/issues"
},
"scripts": {
"start": "node app.js",
"build": "browserify -o public/js/main.js src/index.js",
"watch": "watchify -v -d -o public/js/main.js src/index.js"
},
"devDependencies": {
"browserify": "^10.2.4",
"browserify-shim": "^3.8.9",
"watchify": "^3.2.3"
}
}