-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·83 lines (83 loc) · 2.43 KB
/
package.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.43 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "speech-to-text-demo",
"version": "2.0.0",
"description": "A sample browser app for Bluemix that use the speech-to-text service, fetching a token via Node.js",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/speech-to-text-nodejs.git"
},
"engines": {
"node": ">=6.0",
"npm": ">=3.0"
},
"author": "IBM Corp.",
"browserify-shim": {
"jquery": "global:jQuery"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/speech-to-text-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"test-integration": "casperjs test ./test/integration/test.*.js",
"test-integration-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-integration-runner",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha test/unit",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"cf-deployment-tracker-client": "^0.1.4",
"dotenv": "^4.0.0",
"express": "^4.15.5",
"express-browserify": "^1.0.2",
"express-rate-limit": "^2.11.0",
"express-react-views": "^0.10.5",
"express-secure-only": "^0.2.1",
"helmet": "^3.9.0",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-dropzone": "^4.2.5",
"uglifyify": "^4.0.5",
"watson-developer-cloud": "^2.42.0",
"watson-react-components": "^0.6.16",
"watson-speech": "^0.34.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"body-parser": "^1.18.3",
"casperjs": "^1.1.4",
"codecov": "^2.3.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nock": "^9.1.6",
"phantomjs-prebuilt": "^2.1.16",
"request-promise": "^4.2.2",
"supertest": "^3.0.0",
"watson-developer-cloud": "^2.42.0"
}
}