-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"private": true,
"scripts": {
"prepare": "husky",
"build": "lerna exec --scope @wcj/markdown-to-html -- tsbb build",
"build:dist": "lerna exec \"npm run build\" --scope @wcj/markdown-to-html",
"watch": "lerna exec --scope @wcj/markdown-to-html -- tsbb watch",
"watch:dist": "lerna exec \"npm run start\" --scope @wcj/markdown-to-html",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"remove": "lerna exec \"rm -rf node_modules build package-lock.json\"",
"clean": "lerna clean --yes && npm run remove",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"bootstrap": "lerna bootstrap"
},
"keywords": [
"validator",
"validator.tool",
"validator.js",
"validation",
"validate",
"sanitization",
"sanitize",
"sanitisation",
"sanitise",
"assert"
],
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"packages/**"
],
"lint-staged": {
"*.{js,jsx,css,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"husky": "^9.0.11",
"lerna": "^8.0.0",
"lint-staged": "~14.0.0",
"prettier": "~3.0.0",
"tsbb": "~4.4.0"
}
}