-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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": "project-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": "mocha --require ts-node/register src/test/*.spec.ts",
"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",
"axios": "^1.7.2",
"axios-retry": "^4.4.0",
"qs": "^6.12.1"
},
"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.2",
"@types/qs": "^6.9.15",
"@types/sinon": "^17.0.3",
"@vercel/ncc": "0.38.1",
"chai": "^4.4.1",
"chai-as-promised": "^8.0.0",
"eslint": "^8.57.0",
"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"
}
}