-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 834 Bytes
/
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
{
"name": "github-actions-ensure-sha-pinned-actions",
"version": "1.0.0",
"description": "Ensure that GitHub Actions are pinned to full length commit SHAs",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest --injectGlobals=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions.git"
},
"keywords": [
"actions",
"node"
],
"author": "Zennon Gosalvez",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/glob": "^0.3.0",
"sha1-regex": "^1.0.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"jest": "^29.3.1"
}
}