-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"author": "Qatalog Engineers <[email protected]>",
"bugs": {
"url": "https://github.com/qatalog/gcp-config-node/issues"
},
"dependencies": {
"@google-cloud/secret-manager": "^5.3.0",
"check-types": "^11.2.3",
"google-p12-pem": "^5.0.0"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"joi": ">=6.7.0",
"lint-staged": "^15.3.0",
"mocha": "^11.1.0",
"please-release-me": "^2.1.6",
"prettier": "^3.4.2",
"sinon": "^19.0.2"
},
"description": "GCP-secrets integrated config loader",
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/qatalog/gcp-config-node#readme",
"keywords": [
"gcp",
"secret",
"config"
],
"license": "MIT",
"lint-staged": {
"*.js": "eslint --fix"
},
"main": "src/index.js",
"name": "@qatalog/gcp-config",
"overrides": {
"optionator": "^0.9.3"
},
"peerDependencies": {
"joi": ">=6.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qatalog/gcp-config-node.git"
},
"scripts": {
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
"check": "prettier -c .",
"lint": "eslint src test",
"format": "prettier -w .",
"prepare": "husky",
"release": "release",
"test": "mocha --recurisve --ui tdd --timeout 8000 test"
},
"version": "1.0.1"
}