-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "lv-validation",
"version": "1.1.32",
"description": "lv-validation is a Javascript library that provides a comprehensive set of validation rules for incoming form data",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"artisan": "node artisan.ts",
"release": "npm publish --access public",
"build": "tsc",
"test": "jest --watch",
"test:rules": "jest --watch /src\\__tests__\\classes\\rules/",
"test:validation": "jest --watch src/__tests__/classes/validation.test.ts",
"make:rule": "npm run artisan make:rule"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamaliybi/lv-validation.git"
},
"keywords": [
"validation",
"form-validation",
"validation-library",
"validation-js"
],
"author": {
"name": "Ali Yaghoubi",
"email": "[email protected]",
"url": "https://iamaliybi.dev"
},
"files": [
"src",
"dist"
],
"type": "module",
"sideEffects": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/iamaliybi/lv-validation/issues"
},
"homepage": "https://github.com/iamaliybi/lv-validation",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
}
}