-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
{
"name": "cspell-action",
"version": "6.9.0",
"description": "GitHub Action: Check Spelling",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"prepare": "pnpm run build",
"build": "pnpm build:src && pnpm build:action",
"build:action": "cd action && npm i",
"build:src": "pnpm -r run build",
"clean": "pnpm clean:action && pnpm clean:src",
"clean:src": "pnpm -r --filter ./action-src clean",
"clean:action": "shx rm -rf action/node_modules action/package-lock.json",
"clean-build": "pnpm -r --filter ./action-src clean-build",
"lint": "eslint . --fix && prettier . -w",
"smoke-test-push": "env-cmd -f ./fixtures/push.json node ./action/lib/main_root.js",
"smoke-test": "env-cmd -f ./fixtures/pull_request.json node ./action/lib/main_root.js",
"test": "pnpm -r --filter ./action-src test",
"test-with-auth": "GITHUB_TOKEN=$(gh auth token) pnpm test",
"coverage": "pnpm -r --filter ./action-src coverage",
"update-packages": "pnpm up -r -w"
},
"repository": "git+https://github.com/streetsidesoftware/cspell-action.git",
"keywords": [
"GitHub",
"cspell",
"Action",
"cspell",
"spell",
"spelling",
"checker"
],
"author": "Jason Dent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-action/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-action#readme",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@tsconfig/node20": "^20.1.4",
"@vitest/coverage-istanbul": "^2.1.4",
"env-cmd": "^10.1.0",
"eslint": "^9.14.0",
"eslint-plugin-n": "^17.13.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=20"
}
}