-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "@shanewas/form-validation",
"version": "1.3.3",
"description": "A powerful and flexible validation engine for forms with support for complex rules, dependencies, and custom validations.",
"main": "index.js",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./browser": "./dist/validation-engine.min.js"
},
"scripts": {
"build": "webpack",
"test": "jest",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"prepare": "husky install"
},
"keywords": [
"form",
"validation",
"PDF",
"rules",
"dependency"
],
"author": "Shanewas Ahmed",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/shanewas/ValidationEngine"
},
"bugs": {
"url": "https://github.com/shanewas/ValidationEngine/issues"
},
"homepage": "https://www.npmjs.com/package/@shanewas/form-validation",
"dependencies": {
"@shanewas/form-validation": "file:"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"webpack-cli": "^5.1.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}