-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "@valora/secrets-loader",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"description": "Library for loading secrets via Google Cloud's Secrets Manager",
"scripts": {
"prepublish": "tsc",
"test": "jest --coverage",
"lint": "eslint --ext=.tsx,.ts src/",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/valora-inc/secrets-loader.git"
},
"keywords": [
"valora",
"secrets",
"google"
],
"author": "Valora Inc",
"bugs": {
"url": "https://github.com/valora-inc/secrets-loader/issues"
},
"homepage": "https://github.com/valora-inc/secrets-loader#readme",
"dependencies": {
"@google-cloud/secret-manager": "^5.6.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@valora/eslint-config-typescript": "^1.1.4",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"commit-and-tag-version": "^12.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}