-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
75 lines (75 loc) · 2.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@anchore/sbom-action",
"version": "0.1.0",
"private": true,
"description": "GitHub Action for creating software bill of materials",
"main": "src/runSyftAction.ts",
"scripts": {
"build": "tsc --noEmit",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "run-p package:* && run-s post-package:*",
"package:sbom-action": "ncc build src/runSyftAction.ts -o dist/runSyftAction",
"package:download-action": "ncc build src/attachReleaseAssets.ts -o dist/attachReleaseAssets",
"package:release-action": "ncc build src/downloadSyft.ts -o dist/downloadSyft",
"post-package:fix-line-endings": "eolConverter 'dist/**/*.js'",
"test": "jest --collect-coverage --runInBand",
"test:update-snapshots": "jest --updateSnapshot",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"prepare": "husky install",
"prettier": "prettier -w src",
"precommit": "pretty-quick --staged && npm run package && git add dist/",
"update-deps": "ncu -u && npm i && npm audit fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anchore/sbom-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Keith Zantow <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.1.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/core": "^4.2.0",
"@octokit/webhooks": "^11.0.0",
"fast-safe-stringify": "^2.1.1",
"npm-check-updates": "^17.1.3"
},
"devDependencies": {
"@octokit/webhooks-types": "^6.11.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
"eol-converter-cli": "^1.0.8",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.0",
"type-fest": "^3.9.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=v20.11.0"
}
}