forked from googleapis/google-api-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"nyc": {
"exclude": [
"apis"
]
},
"license": "Apache-2.0",
"dependencies": {
"async": "~2.5.0",
"google-auth-library": "~0.11.0",
"string-template": "~1.0.0"
},
"semistandard": {
"ignore": [
"apis",
"templates/*"
],
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"repository": {
"url": "https://github.com/google/google-api-nodejs-client.git",
"type": "git"
},
"name": "googleapis",
"contributors": [
{
"email": "[email protected]",
"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"
}
],
"version": "22.3.0",
"scripts": {
"posttest": "npm run lint",
"test": "npm run cover",
"doc": "jsdoc -c jsdoc-conf.json",
"prepare": "npm run build",
"build-tools": "tsc -p tsconfig.tools.json",
"build": "tsc",
"lint": "semistandard \"samples/**/*.js\"",
"generate-apis": "npm run build-tools && node scripts/generate.js",
"mocha": "mocha test/ --recursive -t 10000 -S -R spec --require source-map-support/register --require intelli-espower-loader",
"cover": "nyc --cache mocha test/ --recursive -t 10000 -S -R spec --require intelli-espower-loader && nyc report --reporter=html",
"pretest": "npm run build",
"clean": "del-cli \"**/*.js.map\" \"*(test|lib|apis|scripts)/**/*.js\" \"**/*.d.ts\"",
"check": "gts check",
"fix": "gts fix"
},
"author": "Google Inc.",
"keywords": [
"google",
"api",
"google apis",
"client",
"client library"
],
"description": "Google APIs Client Library for Node.js",
"main": "./lib/googleapis.js",
"engines": {
"node": ">=4.0"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.1",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.49",
"del-cli": "^1.1.0",
"gts": "^0.4.1",
"ink-docstrap": "^1.3.0",
"intelli-espower-loader": "^1.0.1",
"js-beautify": "^1.7.4",
"jsdoc": "^3.5.5",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"nock": "9.0.12",
"nyc": "^11.3.0",
"opn": "^5.1.0",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"semistandard": "^11.0.0",
"source-map-support": "^0.5.0",
"swig": "^1.4.2",
"typescript": "^2.2.2"
}
}