-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "retrieve-project-info-action",
"version": "1.5.2",
"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.2",
"axios": "^1.7.2",
"axios-retry": "^4.3.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.12.12",
"@types/sinon": "^10.0.20",
"@vercel/ncc": "^0.38.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"mocha": "^10.4.0",
"sinon": "^14.0.2",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.2",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
},
"engines": {
"node": "20.x"
}
}