-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "github-action-gcp-secrets",
"version": "1.1.3",
"description": "Template to start a new repository on the hub",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "tap 'test/**/*.test.js' --jobs=1",
"dev": "node indexDev.js",
"prepare": "npx husky install",
"build": "ncc build index.js --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform-actions/github-action-gcp-secrets.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform-actions/github-action-gcp-secrets/issues"
},
"homepage": "https://github.com/nearform-actions/github-action-gcp-secrets#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^2.8.8",
"sinon": "^19.0.2",
"tap": "^16.3.8"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.2",
"@google-cloud/secret-manager": "^5.6.0",
"@google-github-actions/setup-cloud-sdk": "^1.1.8",
"@vercel/ncc": "^0.38.3",
"csv-parse": "^5.6.0"
}
}