-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
59
60
{
"name": "@mshick/google-cloud-runtime-configuration-util",
"version": "1.2.0",
"description": "An easy cli for basic Google Cloud Runtime Configuration usage.",
"main": "dist/grcutil.js",
"types": "dist/index.d.ts",
"bin": {
"grcutil": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "tsc --noEmit && jest",
"clean": "rm -rf node_modules dist package-lock.json",
"debug": "node -r dotenv/config index.js",
"prepublish": "yarn build && yarn test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mshick/google-cloud-runtime-configuration-util.git"
},
"keywords": [
"Google Cloud",
"Runtime Configuration",
"env",
"variables",
"configurator",
"dotenv",
"rcloadenv"
],
"author": "Michael Shick <m@shick.us>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mshick/google-cloud-runtime-configuration-util/issues"
},
"homepage": "https://github.com/mshick/google-cloud-runtime-configuration-util#readme",
"dependencies": {
"dotenv": "^8.2.0",
"get-stdin": "^8.0.0",
"googleapis": "^52.1.0",
"yargs": "^15.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^12.12.42",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"google-auth-library": "^6.0.1",
"jest": "^26.0.1",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
}
}