forked from googleapis/nodejs-googleapis-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.32 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
{
"name": "googleapis-common",
"version": "2.0.3",
"description": "A common tooling library used by the googleapis npm module. You probably don't want to use this directly.",
"repository": "googleapis/nodejs-googleapis-common",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map"
],
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"test": "nyc mocha build/test",
"system-test": "mocha build/system-test",
"presystem-test": "npm run compile",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"lint": "npm run check",
"samples-test": "mocha build/samples-test",
"docs": "compodoc src/",
"webpack": "webpack",
"browser-test": "karma start",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs"
},
"keywords": [],
"author": "Google LLC",
"license": "Apache-2.0",
"devDependencies": {
"@compodoc/compodoc": "^1.1.9",
"@types/chai": "^4.1.7",
"@types/execa": "^0.9.0",
"@types/extend": "^3.0.1",
"@types/mocha": "^5.2.7",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.1",
"@types/nock": "^10.0.3",
"@types/qs": "^6.5.3",
"@types/tmp": "0.1.0",
"@types/url-template": "^2.0.28",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"gts": "^1.0.0",
"intelli-espower-loader": "^1.0.1",
"is-docker": "^2.0.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-remap-coverage": "^0.1.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"linkinator": "^1.5.0",
"mocha": "^6.1.4",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"nock": "^10.0.6",
"null-loader": "^3.0.0",
"nyc": "^14.1.1",
"puppeteer": "^1.17.0",
"source-map-support": "^0.5.12",
"ts-loader": "^6.0.2",
"typescript": "~3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4"
},
"dependencies": {
"extend": "^3.0.2",
"gaxios": "^2.0.1",
"google-auth-library": "^4.2.0",
"qs": "^6.7.0",
"url-template": "^2.0.8",
"uuid": "^3.3.2"
},
"engines": {
"node": ">=8.10.0"
}
}