This repository was archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.66 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.66 KB
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
{
"name": "@google-cloud/rcloadenv",
"description": "Node.js implementation of rcloadenv. Wraps execution of a given command and loads variables from the Google Cloud Runtime Config API into that process.",
"version": "4.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"repository": "googleapis/nodejs-rcloadenv",
"engines": {
"node": ">=14.0.0"
},
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src"
],
"bin": {
"rcloadenv": "./build/src/cli.js"
},
"scripts": {
"lint": "gts check",
"test": "c8 mocha build/test",
"fix": "gts fix",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test --timeout 600000",
"docs": "compodoc src/",
"compile": "tsc -p .",
"prepare": "npm run compile",
"pretest": "npm run compile",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"clean": "gts clean",
"precompile": "gts clean"
},
"dependencies": {
"google-auth-library": "^9.0.0",
"lodash.snakecase": "^4.1.1",
"yargs": "^16.0.0"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.19",
"@types/lodash.snakecase": "^4.1.4",
"@types/mocha": "^9.0.0",
"@types/nock": "^11.0.0",
"@types/node": "^20.4.9",
"@types/proxyquire": "^1.3.28",
"@types/yargs": "^16.0.0",
"c8": "^9.0.0",
"codecov": "^3.1.0",
"gts": "^5.0.0",
"linkinator": "^3.0.0",
"mocha": "^9.2.2",
"nock": "^13.0.0",
"proxyquire": "^2.1.0",
"typescript": "^5.1.6"
}
}