-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
50 lines (50 loc) · 1.5 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
{
"private": true,
"homepage": "http://jaywcjlove.github.io/validator.js",
"scripts": {
"test": "tsbb test --env=jsdom",
"coverage": "tsbb test --env=jsdom --coverage",
"start": "lerna exec \"npm run start\" --scope website",
"build": "lerna exec \"npm run build\" --scope website",
"lib": "npm run lib:build && npm run hook:build",
"lib:build": "lerna exec \"npm run build\" --scope validator.tool",
"lib:watch": "lerna exec \"npm run start\" --scope validator.tool",
"hook:build": "lerna exec \"tsbb build\" --scope @validator.tool/hook",
"hook:watch": "lerna exec \"tsbb watch\" --scope @validator.tool/hook",
"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",
"bootstrap": "lerna bootstrap",
"hoist": "lerna bootstrap --hoist"
},
"workspaces": [
"packages/*",
"website"
],
"jest": {
"testMatch": [
"<rootDir>/packages/**/__tests__/*.{js,jsx,ts,tsx}"
],
"collectCoverageFrom": [
"<rootDir>/packages/**/src/**/*.{js,jsx,ts,tsx}"
]
},
"keywords": [
"validator",
"validator.tool",
"validator.js",
"validation",
"validate",
"sanitization",
"sanitize",
"sanitisation",
"sanitise",
"assert"
],
"devDependencies": {
"@types/node": "^18.14.1",
"jest-watch-typeahead": "^2.2.2",
"lerna": "^6.6.1",
"tsbb": "^4.1.4"
}
}