-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.72 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
{
"name": "action-analysis",
"version": "1.0.0",
"description": "Static analyzer for GitHub Actions workflows (CWC study)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"start": "npm run bundle && node dist/index.cjs .github/workflows/sample.yml",
"bundle": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs",
"bundle:cli": "esbuild src/cli.ts --bundle --platform=node --format=cjs --outfile=dist/cli.cjs",
"analyze": "npm run bundle:cli && CWC_CLI=1 node dist/cli.cjs",
"fetch:corpus": "bash scripts/fetch-corpus.sh",
"pipeline:python": "bash scripts/run-pipeline.sh python",
"pipeline:typescript": "bash scripts/run-pipeline.sh typescript",
"repro:manifest": "bash scripts/generate-tool-manifest.sh",
"sensitivity": "esbuild scripts/sensitivity_experiment.mts --bundle --platform=node --format=cjs --outfile=dist/sensitivity_experiment.cjs && node dist/sensitivity_experiment.cjs",
"postinstall": "patch-package"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@actions/expressions": "^0.3.20",
"@actions/workflow-parser": "^0.3.19",
"@types/lodash": "^4.17.20",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"patch-package": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.10.0",
"esbuild": "^0.25.12",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"engines": {
"node": "lts/*"
}
}