-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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": "github-action-detect-unused-secrets",
"version": "1.1.3",
"description": "Detect unused github secrets",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"prepare": "husky",
"build": "ncc build src --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform-actions/github-action-detect-unused-secrets.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform-actions/github-action-detect-unused-secrets/issues"
},
"homepage": "https://github.com/nearform-actions/github-action-detect-unused-secrets#readme",
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^2.8.8"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"actions-toolkit": "github:nearform/actions-toolkit"
}
}