-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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": "avalynx-form",
"title": "AvalynxForm",
"description": "AvalynxForm is a lightweight, customizable form handling library for web applications. Based on Bootstrap >=5.3 without any framework dependencies.",
"version": "0.0.1",
"license": "MIT",
"main": "dist/js/avalynx-form.js",
"module": "dist/js/avalynx-form.esm.js",
"files": [
"dist/js/avalynx-form.js",
"dist/js/avalynx-form.esm.js"
],
"keywords": [
"avalynx",
"form",
"validation",
"input",
"bootstrap",
"bootstrap5",
"component"
],
"ignore": [
"package.json"
],
"author": {
"name": "Juergen Schwind an the Avalynx-Form Team",
"url": "https://github.com/avalynx/avalynx-form/graphs/contributors"
},
"homepage": "https://github.com/avalynx/",
"repository": {
"type": "git",
"url": "git+https://github.com/avalynx/avalynx-form.git"
},
"bugs": {
"url": "https://github.com/avalynx/avalynx-form/issues"
},
"scripts": {
"test": "jest",
"build": "shx rm -rf dist; shx mkdir -p dist/js/; shx cp src/js/avalynx-form.js dist/js/avalynx-form.js; shx cp src/js/avalynx-form.js dist/js/avalynx-form.esm.js; node build.js dist/js/avalynx-form.esm.js"
},
"dependencies": {
"bootstrap": ">=5.3"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"babel-jest": "^29",
"jest": "^29",
"jest-environment-jsdom": "^29",
"shelljs": "^0",
"shx": "^0"
}
}