This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
69 lines (69 loc) · 1.63 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
{
"name": "gce-images",
"version": "5.0.0",
"description": "Get a list of globally available Google Compute Engine images",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src"
],
"scripts": {
"docs": "compodoc src/",
"lint": "gts check",
"test": "c8 mocha build/test",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "echo 'no system tests'",
"presystem-test": "npm run compile",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean"
},
"keywords": [
"gce",
"google",
"compute",
"engine",
"cloud",
"images",
"ubuntu",
"linux",
"redhat",
"rhel",
"opensuse",
"suse",
"debian",
"coreos",
"centos"
],
"repository": "googleapis/nodejs-gce-images",
"author": "Stephen Sawchuk <[email protected]>",
"license": "MIT",
"dependencies": {
"arrify": "^2.0.0",
"google-auth-library": "^9.0.0"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.19",
"@types/chai": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.9",
"c8": "^9.0.0",
"chai": "^4.2.0",
"codecov": "^3.0.4",
"gts": "^5.0.0",
"intelli-espower-loader": "^1.0.1",
"linkinator": "^3.0.0",
"mocha": "^9.2.2",
"source-map-support": "^0.5.6",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
}
}