-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"name": "hawkscan-action",
"version": "2.5.0",
"description": "StackHawk HawkScan Action",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"@octokit/core": "^7.0.6",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"simple-git": "^3.22.0"
}
}