generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.23 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
44
45
46
47
48
{
"name": "actions-upload-release-asset",
"version": "0.0.0",
"private": true,
"description": "Yet Another Upload Release Asset Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"@actions/http-client": "^2.2.3",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.16.5",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
}
}