forked from quarylabs/sqruff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 913 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 913 Bytes
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
{
"name": "sqruff",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"engineStrict": true,
"pnpm": {
"onlyBuiltDependencies": []
},
"devDependencies": {
"@secretlint/secretlint-formatter-sarif": "^11.3.1",
"@secretlint/secretlint-rule-no-dotenv": "^11.3.1",
"@secretlint/secretlint-rule-preset-recommend": "^11.3.1",
"prettier": "^3.8.1"
},
"scripts": {
"ci": "pnpm run fmt:check && pnpm run lint && pnpm run build && pnpm run test && pnpm run package",
"lint": "pnpm run -r lint",
"test": "pnpm run -r --filter playground test",
"build": "pnpm run -r --filter=playground build && pnpm run -r --filter=sqruff build",
"fmt": "prettier --cache -w editors playground README.md .github/**/*.{yaml,yml}",
"fmt:check": "prettier --cache --check editors playground README.md .github/**/*.{yaml,yml}",
"package": "pnpm run -r package"
}
}