forked from googleapis/google-api-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "googleapis",
"version": "1.1.4",
"author": "Google Inc.",
"description": "Google APIs Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
"email": "[email protected]"
},
{
"name": "Ryan Seys",
"email": "[email protected]"
},
{
"name": "Monsur Hossain",
"email": "[email protected]"
}
],
"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",
"request": "~2.51.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-alpha9",
"mkdirp": "~0.5.0",
"mocha": "^1.8.1",
"nock": "~0.46.0",
"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"
}