-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.26 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
{
"name": "hhl-linters",
"version": "2.0.1",
"private": true,
"description": "Basic linter rules for the hedgehog lab org",
"license": "ISC",
"author": "Sam Turrell <[email protected]>",
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"lint": "pnpm lint:eslint && pnpm lint:stylelint",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint './**/*.{scss,vue}'",
"make:package": "node --no-warnings=ExperimentalWarning scripts/make-package/index.js",
"prepare": "pnpm -r run stub",
"release": "pnpm sort-package-json && pnpm build && bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public",
"sort-package-json": "sort-package-json package.json packages/*/package.json",
"test": "pnpm -r run test"
},
"devDependencies": {
"@hedgehoglab/eslint-config": "workspace:^",
"@hedgehoglab/stylelint-config": "workspace:^",
"@types/eslint": "^9.6.1",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"sort-package-json": "^2.14.0",
"stylelint": "^16.13.1"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}