forked from googleapis/google-api-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.06 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
83
84
85
86
87
88
89
90
91
{
"name": "googleapis",
"version": "12.4.0",
"author": "Google Inc.",
"license": "Apache-2.0",
"description": "Google APIs Client Library for Node.js",
"engines": {
"node": ">=0.10"
},
"main": "./lib/googleapis",
"repository": {
"type": "git",
"url": "https://github.com/google/google-api-nodejs-client.git"
},
"contributors": [
{
"name": "Burcu Dogan",
"email": "[email protected]"
},
{
"name": "Jason Allor",
"email": "[email protected]"
},
{
"name": "Jason Dobry",
"email": "[email protected]"
},
{
"name": "Ryan Seys",
"email": "[email protected]"
},
{
"name": "Tim Emiola",
"email": "[email protected]"
},
{
"name": "Justin Beckwith",
"email": "[email protected]"
}
],
"keywords": [
"google",
"api",
"google apis",
"client",
"client library"
],
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
],
"ignore": [
"apis",
"templates/*"
]
},
"dependencies": {
"async": "~2.0.1",
"google-auth-library": "~0.9.7",
"request": "^2.74.0",
"string-template": "~1.0.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"ink-docstrap": "1.2.1",
"istanbul": "^0.4.5",
"js-beautify": "^1.6.3",
"jsdoc": "^3.4.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"rimraf": "^2.5.4",
"semistandard": "^8.0.0",
"swig": "^1.4.2"
},
"scripts": {
"lint": "semistandard \"**/*.js\"",
"test": "npm run lint && mocha --reporter spec --timeout 10000",
"generate-apis": "node scripts/generate",
"doc": "jsdoc -c jsdoc-conf.json",
"prepare": "npm run generate-apis && npm test",
"cover": "istanbul cover -x 'apis/**' _mocha -- --reporter spec --timeout 10000",
"codecov": "istanbul cover -x 'apis/**' _mocha --report lcovonly -- --reporter spec --timeout 10000 && cat coverage/lcov.info | codecov"
}
}