-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@codethreat/appsec-cli",
"version": "1.13.0",
"description": "CodeThreat AppSec CLI for CI/CD integration and automated security scanning",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codethreat": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --format cjs --target node18 --clean --dts",
"build:binaries": "npm run build && npm run pkg:all",
"pkg:all": "npm run pkg:linux && npm run pkg:darwin && npm run pkg:windows",
"pkg:linux": "pkg dist/index.js --targets node18-linux-x64,node18-linux-arm64 --output binaries/codethreat-linux",
"pkg:darwin": "pkg dist/index.js --targets node18-macos-x64,node18-macos-arm64 --output binaries/codethreat-darwin",
"pkg:windows": "pkg dist/index.js --targets node18-win-x64 --output binaries/codethreat-windows.exe",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit"
},
"keywords": [
"security",
"cli",
"sast",
"sca",
"cicd",
"github-actions",
"gitlab-ci"
],
"author": "CodeThreat",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^11.1.0",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"inquirer": "^8.2.6",
"fs-extra": "^11.2.0",
"yaml": "^2.3.4",
"table": "^6.8.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/inquirer": "^9.0.7",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.3.3",
"tsx": "^4.6.2",
"tsup": "^8.0.1",
"pkg": "^5.8.1",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md"
]
}