-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.2 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "rsg-actions",
"version": "0.0.0",
"private": true,
"description": "Rocket Surgeons Actions",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --fix **/*.ts",
"dist": "npm run dist:merge-labels && npm run dist:sync-milestone && npm run dist:auto-label",
"dist:merge-labels": "ncc build ./merge-labels/src/main.ts -o ./merge-labels/dist/",
"dist:sync-milestone": "ncc build ./sync-milestone/src/main.ts -o ./sync-milestone/dist/",
"dist:auto-label": "ncc build ./auto-label/src/main.ts -o ./auto-label/dist/",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run dist && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Rocket Surgeons Guild",
"license": "MIT",
"dependencies": {
"@actions/artifact": "5.0.3",
"@actions/cache": "6.0.1",
"@actions/core": "2.0.3",
"@actions/exec": "3.0.0",
"@actions/github": "8.0.1",
"@actions/glob": "0.5.1",
"@actions/http-client": "4.0.1",
"@actions/io": "3.0.2",
"@actions/tool-cache": "4.0.0",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"semver": "7.8.1"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/node": "24.12.4",
"@types/semver": "7.7.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vercel/ncc": "0.38.4",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "28.14.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-rule-documentation": "1.0.23",
"husky": "9.1.7",
"ix": "7.0.0",
"jest": "30.4.2",
"jest-circus": "30.4.2",
"jest-cli": "30.4.2",
"js-yaml": "4.1.1",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
"rxjs": "7.8.2",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"typescript": "5.9.3"
}
}