-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "mabl-github-deployments-action",
"version": "1.14.0",
"description": "mabl github action for GitHub pipelines integration",
"main": "lib/src/entrypoint.js",
"scripts": {
"test": "jest",
"build": "tsc",
"release": "npm ci && npm run build && npm prune --production && git add -f node_modules/* && git add -f lib/*",
"fix:prettier": "prettier --write 'src/**/*.ts'",
"fix:eslint": "eslint 'src/**/*.ts' --fix",
"fix": "npm run fix:eslint && npm run fix:prettier",
"check:prettier": "prettier --check 'src/**/*.ts'",
"check:eslint": "eslint 'src/**/*.ts'",
"check": "npm run check:eslint && npm run check:prettier"
},
"author": "mabl",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"async-retry": "1.3.3",
"axios": "1.7.1",
"cli-table3": "0.6.5",
"moment": "2.30.1"
},
"devDependencies": {
"@types/async-retry": "1.4.3",
"@types/jest": "29.2.0",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"eslint": "8.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.1.0",
"eslint-plugin-no-null": "1.0.2",
"jest": "29.2.1",
"prettier": "2.6.2",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
}
}