forked from googleapis/nodejs-vision
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.96 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.96 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@google-cloud/vision",
"description": "Google Cloud Vision API client for Node.js",
"version": "0.21.1",
"license": "Apache-2.0",
"author": "Google Inc",
"engines": {
"node": ">=6.0.0"
},
"repository": "googleapis/nodejs-vision",
"main": "src/index.js",
"files": [
"protos",
"src",
"AUTHORS",
"LICENSE"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google vision",
"vision",
"Google Cloud Vision API"
],
"contributors": [
"Ace Nassri <[email protected]>",
"Alexander Fenster <[email protected]>",
"Ali Ijaz Sheikh <[email protected]>",
"Christopher Wilcox <[email protected]>",
"Dave Gramlich <[email protected]>",
"Ernest Landrito <[email protected]>",
"Gus Class <[email protected]>",
"Jason Dobry <[email protected]>",
"Jonathan Lui <[email protected]>",
"Jun Mukai <[email protected]>",
"Justin Beckwith <[email protected]>",
"Justin Beckwith <[email protected]>",
"Kelvin Jin <[email protected]>",
"Luke Sneeringer <[email protected]>",
"Rebecca Taylor <[email protected]>",
"Shahin <[email protected]>",
"Song Wang <[email protected]>",
"Stephen Sawchuk <[email protected]>",
"Tim Swast <[email protected]>",
"calibr <[email protected]>",
"dpebot <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"rtw <[email protected]>"
],
"scripts": {
"cover": "nyc --reporter=lcov mocha test/*.js && nyc report",
"docs": "jsdoc -c .jsdoc.js",
"generate-scaffolding": "repo-tools generate all && repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"lint": "eslint src/ samples/ system-test/ test/",
"prettier": "prettier --write src/*.js src/*/*.js samples/*.js samples/*/*.js test/*.js test/*/*.js system-test/*.js system-test/*/*.js",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "mocha system-test/*.js smoke-test/*.js --timeout 600000",
"test-no-cover": "mocha test/*.js",
"test": "npm run cover"
},
"dependencies": {
"@google-cloud/promisify": "^0.3.0",
"google-gax": "^0.19.0",
"is": "^3.2.1",
"lodash.merge": "^4.6.1",
"protobufjs": "^6.8.6",
"yargs": "^12.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"@google-cloud/storage": "^1.7.0",
"async": "^2.6.1",
"codecov": "^3.0.2",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-prettier": "^2.6.1",
"ink-docstrap": "^1.3.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"power-assert": "^1.6.0",
"prettier": "^1.13.6",
"sinon": "^6.0.1",
"uuid": "^3.3.0"
}
}