This repository was archived by the owner on Mar 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "labelcat",
"version": "1.0.0-alpha.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"contributors": [
{
"name": "Jason Dobry",
"email": "jason.dobry@gmail.com"
},
{
"name": "Steffany Brown",
"email": "steffanyb@google.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/LabelCat.git"
},
"preferGlobal": true,
"bin": {
"labelcat": "bin/labelcat.js"
},
"engines": {
"node": ">= 8.x"
},
"scripts": {
"cover": "nyc --reporter=lcov mocha test/*.js && nyc report",
"lint": "eslint src/ system-test/ test/ bin/",
"prettier": "prettier --write bin/*.js src/*.js test/*.js system-test/*.js",
"system-test": "mocha system-test/*.js --timeout 600000",
"test-no-cover": "mocha test/*.js",
"test": "npm run cover"
},
"dependencies": {
"@google-cloud/automl": "^0.1.2",
"@octokit/rest": "^15.12.1",
"csv-write-stream": "^2.0.0",
"json2csv": "^4.2.1",
"loglevel": "^1.6.1",
"papaparse": "^4.6.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"codecov": "^3.0.2",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-prettier": "^2.6.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"power-assert": "^1.6.0",
"prettier": "^1.13.5",
"proxyquire": "^2.1.0",
"sinon": "^6.3.4"
}
}