-
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.4 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.4 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": "setup-htmlq",
"version": "3.0.7",
"description": "Set up your GitHub Actions workflow with htmlq",
"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.1",
"@actions/exec": "3.0.0",
"@actions/tool-cache": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@eslint/compat": "2.1.0",
"@eslint/eslintrc": "3.3.6",
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/node": "26.1.1",
"@vercel/ncc": "0.44.1",
"eslint": "10.7.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-simple-import-sort": "14.0.0",
"eslint-plugin-tsdoc": "0.5.2",
"globals": "17.7.0",
"husky": "9.1.7",
"jest": "30.4.2",
"lint-staged": "17.1.0",
"prettier": "3.9.6",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.65.0"
},
"private": true,
"license": "MIT"
}