-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "github-actions-setup-cli-template",
"version": "1.0.0-alpha",
"description": "GitHub Actions setup CLI template",
"author": "Mark <mark@remarkablemark.org>",
"main": "src/index.ts",
"scripts": {
"build": "ncc build --minify",
"build:watch": "tsc --watch",
"clean": "rm -rf coverage dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit",
"prepare": "husky",
"test": "node --experimental-vm-modules $(npx which jest)",
"test:ci": "CI=true npm test -- --ci --colors --coverage",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/tool-cache": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@eslint/compat": "2.0.2",
"@eslint/eslintrc": "3.3.4",
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/node": "25.3.3",
"@vercel/ncc": "0.38.4",
"eslint": "10.0.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-tsdoc": "0.5.2",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.3.2",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1"
},
"private": true,
"license": "MIT"
}