-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
59
60
61
62
63
64
65
{
"name": "@modulify/validator",
"description": "Declarative validation util for JavaScript",
"license": "MIT",
"version": "0.0.2",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint src tests types",
"prepare": "husky",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"stats": "gzip -c ./dist/index.mjs | wc -c",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:html": "vitest run --coverage --reporter=html --outputFile.html=./reports/html/report.html"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@eslint/js": "^9.13.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.15 || ^20.11",
"@vitest/coverage-istanbul": "2.1.3",
"@vitest/ui": "2.1.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"husky": "^9.0.10",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4",
"vitest": "^2.1.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"validate",
"validator"
],
"contributors": [
"Zaitsev Kirill <[email protected]>"
],
"homepage": "https://github.com/modulify/validator",
"repository": {
"type": "git",
"url": "https://github.com/modulify/validator.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}