-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.48 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
66
67
{
"name": "jsontoform",
"version": "2.0.0",
"description": "A modern jQuery plugin for converting JSON schemas to beautiful HTML forms with real-time validation",
"main": "jsonToForm/jsonToForm.v2.js",
"types": "jsonToForm/jsonToForm.d.ts",
"scripts": {
"build": "node build/build.js",
"dev": "python -m http.server 8080",
"serve": "python -m http.server 8080",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/jsonToForm.git"
},
"keywords": [
"json",
"form",
"jquery",
"schema",
"validation",
"ui",
"rtl",
"persian",
"farsi",
"typescript",
"css",
"responsive",
"modern"
],
"author": "JsonToForm Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/jsonToForm/issues"
},
"homepage": "https://github.com/yourusername/jsonToForm#readme",
"dependencies": {
"jquery": "^3.7.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5"
},
"peerDependencies": {
"jquery": ">=3.0.0"
},
"files": [
"jsonToForm/",
"src/",
"demo-*.html",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not IE 11"
],
"jsdelivr": "jsonToForm/jsonToForm.v2.js",
"unpkg": "jsonToForm/jsonToForm.v2.js"
}