-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "assets-artifacts",
"main": "./dist/index.js",
"version": "1.0.0",
"description": "A GitHub Action to upload artifacts to a release",
"dependencies": {
"@actions/core": "~1.10.1",
"@actions/exec": "~1.1.1",
"@actions/github": "~6.0.0",
"simple-git": "~3.22.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@total-typescript/shoehorn": "^0.1.0",
"@types/node": "~20.11.25",
"@typescript-eslint/eslint-plugin": "~7.1.1",
"@typescript-eslint/parser": "~7.1.1",
"@vercel/ncc": "~0.38.1",
"eslint": "~8.57.0",
"husky": "~9.0.11",
"jest": "^29.7.0",
"prettier": "~3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.0"
},
"scripts": {
"build": "tsc --outDir build && ncc -m build -o dist ./index.ts",
"prettify": "prettier --write src/**/*.ts index.ts",
"lint": "eslint ./src --ext .ts",
"lint:test": "eslint --config ./tests/.eslintrc.json ./tests --ext .ts",
"prepare": "husky",
"test": "jest --config ./tests/jest.config.ts",
"qa": "yarn lint && yarn lint:test && yarn test"
}
}