-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 1.31 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
{
"private": true,
"scripts": {
"clean": "pnpm -r run clean",
"build": "pnpm --workspace-concurrency=1 --filter=elint-helpers --filter=elint run build && pnpm -r --filter=!elint --filter=!elint-helpers run build",
"prepare": "elint prepare",
"preinstall": "npx only-allow pnpm",
"commit": "elint lint commit && pnpm run lint",
"lint": "elint lint \"packages/**/*\" \"!**/test-preset\" --no-notifier --cache",
"start": "ts-node packages/elint/src/cli/index.ts lint \"packages/**/*\" \"!**/test-preset\" --no-notifier --cache",
"test:unit:elint": "pnpm --filter elint run test:unit",
"test:system": "pnpm --filter elint run test:system",
"test": "pnpm -r run test:unit && pnpm run test:system",
"prepublishOnly": "pnpm run clean && pnpm run build"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@jest/globals": "^29.3.1",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.4",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.17",
"cross-env": "^7.0.3",
"elint": "workspace:*",
"elint-helpers": "workspace:*",
"elint-preset-self": "workspace:*",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}