-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "cacheract",
"version": "1.0.0",
"description": "GitHub Actions Cache Native Proof-of-Concept Malware",
"main": "webpack.config.js",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "^16.9.1",
"babel-loader": "^9.2.1",
"jest": "^29.7.0",
"mock-fs": "^5.4.1",
"ncp": "^2.0.0",
"terser-webpack-plugin": "^5.2.5",
"ts-jest": "^29.2.5",
"ts-loader": "^9.2.3",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"axios": "^1.7.9"
},
"scripts": {
"prebuild": "npm install",
"build": "NODE_ENV=production webpack",
"build-dev": "npm install --save-dev && NODE_ENV=development webpack",
"test": "jest"
},
"keywords": [],
"author": "AdnaneKhan",
"license": "MIT"
}