-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
{
"name": "gcp-metadata",
"version": "6.1.0",
"description": "Get the metadata from a Google Cloud Platform environment",
"repository": "googleapis/gcp-metadata",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src"
],
"scripts": {
"compile": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsc -p .",
"fix": "gts fix",
"pretest": "npm run compile",
"prepare": "npm run compile",
"samples-test": "npm link && cd samples/ && npm link ../ && npm test && cd ../",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test --timeout 600000",
"test": "c8 mocha --timeout=5000 build/test",
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts check",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"clean": "gts clean",
"precompile": "gts clean"
},
"keywords": [
"google cloud platform",
"google cloud",
"google",
"app engine",
"compute engine",
"metadata server",
"metadata"
],
"author": "Google LLC",
"license": "Apache-2.0",
"dependencies": {
"gaxios": "^6.7.1",
"google-logging-utils": "^1.0.0",
"json-bigint": "^1.0.0"
},
"devDependencies": {
"@google-cloud/functions": "^3.6.0",
"@types/json-bigint": "^1.0.4",
"@types/mocha": "^10.0.9",
"@types/ncp": "^2.0.8",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"@types/tmp": "^0.2.6",
"@types/uuid": "^10.0.0",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
"gcbuild": "^1.3.39",
"gcx": "^1.0.0",
"gts": "^6.0.2",
"jsdoc": "^4.0.4",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^6.1.2",
"mocha": "^10.8.2",
"ncp": "^2.0.0",
"nock": "^13.5.5",
"sinon": "^19.0.2",
"tmp": "^0.2.3",
"typescript": "^5.6.3",
"uuid": "^11.0.2"
},
"engines": {
"node": ">=18"
}
}