-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.68 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
{
"name": "@zentered/envsync",
"version": "1.0.0",
"private": false,
"description": "Synchronize .env files with Google Cloud Secrets Manager",
"keywords": [],
"homepage": "https://github.com/zentered/envsync#readme",
"bugs": {
"url": "https://github.com/zentered/envsync/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/envsync.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/patrickheneise)"
],
"type": "module",
"bin": {
"@zentered/envsync": "./index.js",
"envsync": "./index.js"
},
"main": "index.js",
"scripts": {
"codestyle": "prettier --write \"./**/*.{js,md}\"",
"dev": "node --watch --env-file=.env index.js",
"lint": "eslint --fix . --ext .js --ext md",
"start": "node index.js",
"test": "node --loader=esmock --test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md,yaml}": [
"prettier --write"
],
"*.js": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@google-cloud/secret-manager": "^5.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-node": "^11.1.0",
"esmock": "^2.6.9",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=20"
}
}