-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.97 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@chantouchsek/validatorjs",
"type": "module",
"version": "2.2.4",
"packageManager": "pnpm@9.10.0",
"description": "The validator.js library makes data validation in JavaScript very easy in both the browser and Node.js.",
"author": {
"name": "Chantouch Sek",
"email": "chantouchsek.cs83@gmail.com",
"url": "https://chantouchsek.me"
},
"license": "MIT",
"homepage": "https://github.com/chantouchsek/validatorjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chantouchsek/validatorjs.git"
},
"bugs": {
"url": "https://github.com/chantouchsek/validatorjs/issues"
},
"keywords": [
"validator",
"validatorjs",
"node-validator"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.cjs"
}
},
"main": "./dist/main.cjs",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^12.20.0 || >=14.13.0"
},
"scripts": {
"build": "unbuild",
"test": "vitest --run",
"test:watch": "vitest watch",
"test:cov": "vitest run --coverage",
"release": "standard-version && git push --follow-tags origin main && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.5.5",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"node-notifier": "^10.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.1"
},
"lint-staged": {
"*.{js,ts}": "eslint . --fix"
},
"engineStrict": true
}