forked from isonnymichael/validate-form-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.22 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.22 KB
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": "validate-form-simple",
"version": "2.2.1",
"description": "validate-form is a lightweight JavaScript library for effortless HTML form validation. Easily add validation to your forms without writing lengthy and complex JavaScript code. Key features include automatic validation for text inputs, emails, textareas, customizable error messages, seamless integration with existing HTML forms, and easy customization to suit your project's needs. With validate-form, ensure users fill out forms correctly before submission, reducing errors and enhancing user experience.",
"main": "dist/validate-form-simple.cjs.js",
"module": "dist/validate-form-simple.esm.js",
"exports": {
"require": "./dist/validate-form-simple.cjs.js",
"import": "./dist/validate-form-simple.esm.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle --name=validateForm",
"dev": "microbundle watch",
"test": "jest",
"prepare": "husky install",
"release": "standard-version",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix --no-ignore",
"*.{json,md,yml,yaml}": "prettier --write"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/isonnymichael/validate-form-simple.git"
},
"keywords": [
"form",
"validation",
"JavaScript",
"input",
"HTML",
"frontend"
],
"author": "Sonny Michael",
"license": "ISC",
"bugs": {
"url": "https://github.com/isonnymichael/validate-form-simple/issues"
},
"homepage": "https://github.com/isonnymichael/validate-form-simple#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.30.1",
"commitlint": "^19.8.1",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.1.2",
"microbundle": "^0.15.1",
"prettier": "^3.6.2",
"standard-version": "^9.5.0"
}
}