-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "google-cloud-machine-learning-browser-extension",
"description": "Browser extension demonstrating Google Cloud APIs related to machine learning.",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Google, Inc.",
"contributors": [
{
"name": "Jason Hall",
"email": "jasonhall@google.com"
},
{
"name": "Tim Swast",
"email": "swast@google.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/machine-learning-browser-extension.git"
},
"bugs": {
"url": "https://github.com/GoogleCloudPlatform/machine-learning-browser-extension/issues"
},
"homepage": "https://github.com/GoogleCloudPlatform/machine-learning-browser-extension#readme",
"semistandard": {
"globals": [
"assert",
"API_KEY",
"before",
"casper",
"chrome",
"contextMenus",
"describe",
"Event",
"FileReader",
"Image",
"it",
"XMLHttpRequest"
],
"ignore": [
"**/node_modules/**",
"coverage/",
"chrome/config.json"
]
},
"scripts": {
"lint": "semistandard \"**/*.js\"",
"karma": "karma start chrome/karma.conf.js",
"test": "npm run lint && npm run karma"
},
"devDependencies": {
"chai": "^3.5.0",
"jasmine": "^3.3.1",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-mocha": "^1.1.1",
"mocha": "^2.5.3",
"semistandard": "^8.0.0",
"sinon-chrome": "^1.1.2"
}
}