forked from GoogleCloudPlatform/web-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 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
{
"name": "web-docs-samples",
"description": "Web samples found on https://cloud.google.com.",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Google, Inc.",
"contributors": [
{
"name": "Tim Swast",
"email": "swast@google.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/web-docs-samples.git"
},
"bugs": {
"url": "https://github.com/GoogleCloudPlatform/web-docs-samples/issues"
},
"homepage": "https://github.com/GoogleCloudPlatform/web-docs-samples#readme",
"semistandard": {
"globals": [
"$",
"assert",
"before",
"describe",
"Event",
"fail",
"FileReader",
"Image",
"it",
"processFile",
"XMLHttpRequest"
],
"ignore": [
"**/node_modules/**",
"coverage/",
"vision/browser/key.js"
]
},
"scripts": {
"karma_speech": "karma start speech/explore-api/karma.conf.js",
"karma_vision": "karma start vision/explore-api/karma.conf.js",
"lint": "semistandard \"**/*.js\"",
"test": "npm run lint && npm run karma_speech && npm run karma_vision"
},
"devDependencies": {
"chai": "^3.5.0",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-detect-browsers": "^2.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"mocha": "^2.5.3",
"semistandard": "^8.0.0",
"sinon": "^1.17.7"
}
}