-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "run-gitleaks",
"description": "Installs and runs gitleaks in your actions workflow",
"main": "src/index.js",
"scripts": {
"lint": "eslint --config package.json './src/**/*.js'",
"build": "ncc build src/index.js -o dist --minify --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gacts/gitleaks.git"
},
"keywords": [
"GitHub",
"Actions",
"GitLeaks"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gacts/gitleaks/issues"
},
"homepage": "https://github.com/gacts/gitleaks#readme",
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"rules": {}
}
}