-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
78
79
80
81
82
83
84
85
86
{
"name": "robust-validator",
"version": "2.2.0",
"description": "Rule-based data validation library",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:consumer": "sh scripts/consumer-test.sh",
"lint": "eslint .",
"prepare": "husky",
"build": "rm -rf ./dist && rollup -c"
},
"files": [
"/dist"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"robust-validator",
"validatorjs",
"validator.js",
"data validation",
"validator",
"validate",
"validation",
"data",
"laravel",
"laravel-validator-for-js"
],
"author": "Özgür Adem Işıklı <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/axe-api/validator"
},
"bugs": {
"url": "https://github.com/axe-api/validator/issues"
},
"homepage": "https://github.com/axe-api/validator#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.10",
"jest": "^29.7.0",
"rollup": "^4.9.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"terser": "^5.27.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"dependencies": {
"date-fns": "^4.1.0"
}
}