forked from googleapis/google-api-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
{
"name": "googleapis",
"version": "2.1.1",
"author": "Google Inc.",
"description": "Google APIs Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
"email": "jbd@google.com"
},
{
"name": "Ryan Seys",
"email": "ryanseys@google.com"
},
{
"name": "Tim Emiola",
"email": "tbetbetbe@google.com"
},
{
"name": "Jason Allor",
"email": "jasonall@google.com"
}
],
"engines": {
"node": ">=0.10"
},
"main": "./lib/googleapis",
"repository": {
"type": "git",
"url": "https://github.com/google/google-api-nodejs-client.git"
},
"keywords": [
"google",
"api",
"google apis",
"client",
"client library"
],
"dependencies": {
"async": "~0.9.0",
"gapitoken": "~0.1.2",
"google-auth-library": "~0.9.3",
"request": "~2.58.0",
"string-template": "~0.2.0"
},
"devDependencies": {
"coveralls": "^2.11.1",
"istanbul": "^0.3.2",
"js-beautify": "^1.5.1",
"jshint": "^2.5.5",
"jsdoc": "^3.3.0-beta3",
"mkdirp": "^0.5.0",
"mocha": "^2.2.1",
"nock": "^1.2.1",
"rimraf": "^2.2.8",
"swig": "^1.4.2",
"url": "^0.10.1",
"minimist": "^1.1.0"
},
"scripts": {
"lint": "jshint lib test scripts apis",
"test": "mocha --reporter spec --timeout 4000",
"generate-apis": "node scripts/generate",
"generate-docs": "jsdoc -c jsdoc-conf.json ./README.md",
"prepare": "npm run generate-apis && npm test && npm run lint && npm version patch",
"coverage": "istanbul cover -x 'apis/**' _mocha -- --reporter spec --timeout 4000",
"coveralls": "istanbul cover -x 'apis/**' _mocha --report lcovonly -- --reporter spec --timeout 4000 && cat coverage/lcov.info | coveralls"
},
"license": "Apache-2.0"
}