-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
43
44
45
46
47
48
49
50
{
"name": "codethreat-appsec-github-action",
"version": "1.0.0",
"description": "GitHub Action for CodeThreat security scanning",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts --source-map --license licenses.txt",
"package": "npm run build",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"all": "npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeThreat/codethreat-appsec-github-action.git"
},
"keywords": [
"security",
"sast",
"sca",
"github-action",
"vulnerability-scanner",
"devsecops",
"ci-cd"
],
"author": "CodeThreat",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@codethreat/appsec-cli": "1.12.4",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}