forked from googleapis/nodejs-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.74 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@google-cloud/language",
"description": "Google Cloud Natural Language API client for Node.js",
"version": "1.1.0",
"license": "Apache-2.0",
"author": "Google Inc",
"engines": {
"node": ">=4.0.0"
},
"repository": "googleapis/nodejs-language",
"main": "src/index.js",
"files": [
"protos",
"src",
"AUTHORS",
"CONTRIBUTORS",
"LICENSE"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google language",
"language",
"Google Cloud Natural Language API"
],
"contributors": [
"Ace Nassri <[email protected]>",
"Amy <[email protected]>",
"Dave Gramlich <[email protected]>",
"Eric Uldall <[email protected]>",
"Ernest Landrito <[email protected]>",
"Gus Class <[email protected]>",
"Jason Dobry <[email protected]>",
"Jerjou <[email protected]>",
"Jun Mukai <[email protected]>",
"Luke Sneeringer <[email protected]>",
"Ricky Dunlop <[email protected]>",
"Sawyer Hollenshead <[email protected]>",
"Song Wang <[email protected]>",
"Stephen Sawchuk <[email protected]>",
"Tim Swast <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>"
],
"scripts": {
"cover": "nyc --reporter=lcov mocha --require intelli-espower-loader test/*.js && nyc report",
"docs": "repo-tools exec -- jsdoc -c .jsdoc.js",
"generate-scaffolding": "repo-tools generate all && repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"lint": "repo-tools lint --cmd eslint -- src/ samples/ system-test/ test/",
"prettier": "repo-tools exec -- 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 test && cd ../",
"system-test": "repo-tools test run --cmd mocha -- system-test/*.js --timeout 5000",
"test-no-cover": "repo-tools test run --cmd mocha -- test/*.js --no-timeouts",
"test": "repo-tools test run --cmd npm -- run cover"
},
"dependencies": {
"google-gax": "^0.14.1",
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.1.0",
"async": "^2.5.0",
"codecov": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"extend": "^3.0.1",
"ink-docstrap": "^1.3.0",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"power-assert": "^1.4.4",
"prettier": "^1.7.4"
}
}