-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
59
60
61
62
63
{
"name": "cspell-action",
"version": "6.10.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.20.0",
"@tsconfig/node20": "^20.1.4",
"@vitest/coverage-istanbul": "^2.1.9",
"env-cmd": "^10.1.0",
"eslint": "^9.20.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.5.0",
"shx": "^0.3.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^2.1.9"
},
"pnpm": {
"overrides": {
"undici": "^5.28.5"
}
},
"engines": {
"node": ">=20"
}
}