quantique-field-validator 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Messages/defaultErrorMessages.js +22 -0
- package/Validators/ValidateChassisNumber.js +36 -0
- package/Validators/validateAadhaar.js +22 -0
- package/Validators/validateAddress.js +38 -0
- package/Validators/validateAlphanumeric.js +47 -0
- package/Validators/validateCustom.js +18 -0
- package/Validators/validateDate.js +166 -0
- package/Validators/validateEmail.js +39 -0
- package/Validators/validateEngineNumber .js +36 -0
- package/Validators/validateFloatNumber.js +108 -0
- package/Validators/validateMobile.js +116 -0
- package/Validators/validateName.js +59 -0
- package/Validators/validateNumber.js +75 -0
- package/Validators/validatePanCard.js +34 -0
- package/Validators/validatePassword.js +38 -0
- package/Validators/validateString.js +41 -0
- package/index.js +74 -288
- package/package.json +22 -25
package/package.json
CHANGED
|
@@ -1,25 +1,22 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "quantique-field-validator",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Validator to verify all form fields.",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/saketsinhaquantique/quantique-field-validator.git"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"QFV"
|
|
15
|
-
],
|
|
16
|
-
"author": "Saket Brij Sinha <saket.sinha@quantique.ai>",
|
|
17
|
-
"license": "MIT",
|
|
18
|
-
"bugs": {
|
|
19
|
-
"url": "https://github.com/saketsinhaquantique/quantique-field-validator/issues"
|
|
20
|
-
},
|
|
21
|
-
"homepage": "https://github.com/saketsinhaquantique/quantique-field-validator#readme"
|
|
22
|
-
|
|
23
|
-
"libphonenumber-js": "^1.12.6"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "quantique-field-validator",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Validator to verify all form fields.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/saketsinhaquantique/quantique-field-validator.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"QFV"
|
|
15
|
+
],
|
|
16
|
+
"author": "Saket Brij Sinha <saket.sinha@quantique.ai>",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/saketsinhaquantique/quantique-field-validator/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/saketsinhaquantique/quantique-field-validator#readme"
|
|
22
|
+
}
|