-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
{
"author": "Ben Gardiner <gardinbe@gmail.com>",
"license": "MIT",
"name": "form-validation-extended",
"version": "1.1.7",
"description": "A utility to validate HTML forms.",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "vite build",
"examples": "vite serve ./examples --host"
},
"files": [
"dist",
"readme.md",
"license"
],
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gardinbe/form-validation-extended"
},
"keywords": [
"validator",
"validation",
"form validator",
"form validation",
"html form validator",
"html form validation",
"web form validator",
"web form validation",
"input validation",
"input validator"
],
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.2.17",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.6.4"
},
"dependencies": {
"lodash": "^4.17.21"
}
}