-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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": "smarkform",
"version": "0.13.0",
"private": false,
"type": "module",
"browser": "dist/SmarkForm.esm.js",
"module": "dist/SmarkForm.esm.js",
"umd": "dist/SmarkForm.umd.js",
"scripts": {
"pretest": "npm run build && node scripts/collect-docs-examples.js",
"test": "playwright test",
"test:pick": "npm run pretest && scripts/test_pick.sh",
"build": "scripts/build_production_smarkform.sh",
"doc": "scripts/build_documentation_site.sh",
"bundle": "scripts/build_all.sh",
"watch": "scripts/livebuild_dev_smarkform.sh",
"servedoc": "scripts/liveserve_documentation_site.sh",
"dev": "scripts/liveserve_all.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitifet/SmarkForm.git"
},
"keywords": [
"front-end",
"form",
"form-controller",
"form-library",
"json-form",
"lightweight",
"vanilla",
"css-agnostic",
"DOM",
"html-form",
"no-dependencies",
"a11y"
],
"author": "Joan Miquel Torres <joanmi@bitifet.net>",
"contributors": [
"Joan Miquel Torres <joanmi@bitifet.net> (https://github.com/bitifet)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitifet/SmarkForm/issues"
},
"homepage": "https://smarkform.bitifet.net",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@playwright/test": "^1.58.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.1.0",
"concurrently": "^9.2.0",
"minimatch": "^10.2.4",
"pug": "^3.0.3",
"rollup": "^4.59.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-del": "^1.0.1",
"sass": "^1.97.3"
},
"browserslist": "> 0.25%, not dead",
"files": [
"dist"
]
}