-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "artifact-action",
"version": "1.1.0",
"scripts": {
"lint": "eslint src --max-warnings=0 --ext .ts",
"lint:fix": "eslint src --max-warnings=0 --ext .ts --fix",
"test": "",
"build": "tsc",
"release": "ncc build src/main/index.ts"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "6.0.0",
"@ionos-deploy-now/actions-core": "^1.1.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.2",
"axios-retry": "^4.4.0",
"p-limit": "^4.0.0",
"p-throttle": "^6.1.0",
"tar": "^7.4.0"
},
"devDependencies": {
"@ionos-deploy-now/eslint-config-actions": "^1.1.0",
"@ionos-deploy-now/prettier-config-actions": "^1.1.0",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "20.14.5",
"@types/sinon": "^17.0.3",
"@vercel/ncc": "^0.38.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"mocha": "^10.4.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.2",
"typescript": "5.4.5",
"uuid": "^10.0.0"
},
"engines": {
"node": "20.x"
}
}