-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.95 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
51
52
53
54
55
56
57
58
{
"name": "valtors",
"version": "2.6.3",
"description": "JavaScript validation library",
"main": "index.js",
"types": "index.d.ts",
"author": "VZH",
"license": "MIT",
"homepage": "https://github.com/vlazh/valtors",
"repository": {
"type": "git",
"url": "https://github.com/vlazh/valtors"
},
"bugs": {
"url": "https://github.com/vlazh/valtors/issues"
},
"keywords": [
"validation",
"validate",
"validators",
"form validation",
"react validation",
"mobx validation",
"javascript validation",
"typescript validation"
],
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json README.md LICENSE .npmignore ./dist/",
"minify": "node-utils-minify --replace ./dist",
"build": "yarn run clean && tsc --build ./tsconfig.json",
"manual-test": "yarn run build && node --experimental-modules ./dist/test/test.js",
"patch-publish": "yarn run build && yarn run minify && npm version patch --no-workspaces-update -m 'v%s' && yarn run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags",
"minor-publish": "yarn run build && yarn run minify && npm version minor --no-workspaces-update -m 'v%s' && yarn run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags"
},
"optionalDependencies": {
"@js-toolkit/node-utils": "^1.2.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@js-toolkit/configs": "^3.93.13",
"@js-toolkit/utils": "^1.55.1",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"copyfiles": "^2.4.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}