forked from watson-developer-cloud/speech-javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.69 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
70
71
72
73
{
"name": "watson-speech",
"version": "0.32.3",
"description": "IBM Watson Speech to Text and Text to Speech SDK for web browsers.",
"main": "index.js",
"scripts": {
"watch-test": "karma start",
"lint": "eslint .",
"autofix": "eslint . --fix",
"test": "npm run lint &&npm run test-offline",
"test-offline": "karma start --single-run",
"test-integration": "TEST_MODE=integration karma start --single-run",
"webpack": "webpack",
"browserify": "browserify index.js --standalone WatsonSpeech --outfile dist/watson-speech.js --transform envify",
"minify": "uglifyjs --compress --mangle --screw-ie8 dist/watson-speech.js --output dist/watson-speech.min.js --preamble \"// IBM Watson Speech JavaScript SDK\n// $npm_package_version\n// Generated at `date`\n// Copyright IBM ($npm_package_license)\n// $npm_package_homepage\"",
"watchify": "watchify index.js --standalone WatsonSpeech --outfile dist/watson-speech.js --debug --verbose",
"build": "npm run webpack && npm run minify",
"doc": "jsdoc -c scripts/jsdoc/config.json --debug",
"watch-doc": "nodemon --watch ./ --ignore ./doc --ext js,tmpl,json --exec npm run doc"
},
"author": "Nathan Friedly <http://nfriedly.com>",
"devDependencies": {
"browserify": "^14.0.0",
"concat-stream": "^1.6.0",
"envify": "^4.0.0",
"envify-loader": "^0.1.0",
"eslint": "^3.13.1",
"eslint-config-google": "^0.7.1",
"eslint-config-prettier": "^1.0.3",
"eslint-plugin-prettier": "^2.0.0",
"expect.js": "^0.3.1",
"jquery": "^3.1.1",
"jsdoc": "^3.4.3",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-eslint": "^2.2.0",
"karma-express-http-server": "0.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"memory-fs": "^0.4.1",
"mocha": "^3.2.0",
"prettier": "^0.18.0",
"serve-static": "^1.11.1",
"sinon": "^1.17.7",
"uglify-js": "^2.7.5",
"watchify": "^3.8.0",
"watson-developer-cloud": "^2.14.5",
"webpack": "^2.2.1"
},
"dependencies": {
"clone": "^2.1.0",
"defaults": "^1.0.3",
"get-user-media-promise": "^1.1.0",
"lodash.pullallwith": "^4.7.0",
"microphone-stream": "^3.0.5",
"nodeify-fetch": "^0.1.2",
"object.assign": "^4.0.4",
"object.pick": "^1.2.0",
"readable-blob-stream": "^1.1.0",
"websocket": "^1.0.24",
"whatwg-fetch": "^2.0.1"
},
"homepage": "http://watson-speech.mybluemix.net/",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/speech-javascript-sdk.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/speech-javascript-sdk/issues"
}
}