-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "smarkform",
"version": "0.8.4",
"private": false,
"type": "module",
"browser": "dist/SmarkForm.esm.js",
"module": "dist/SmarkForm.esm.js",
"umd": "dist/SmarkForm.umd.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha",
"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",
"web",
"form",
"controller",
"markup",
"lightweight",
"component",
"DOM",
"vanilla",
"pureweb",
"html",
"css-agnostic",
"library",
"framework",
"template"
],
"author": "Joan Miquel Torres <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitifet/SmarkForm/issues"
},
"homepage": "https://smarkform.bitifet.net",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"concurrently": "^9.1.0",
"mocha": "^10.7.3",
"pug": "^3.0.3",
"puppeteer": "^22.15.0",
"rollup": "^4.24.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-del": "^1.0.1",
"sass": "^1.83.1"
},
"browserslist": "> 0.25%, not dead",
"files": [
"dist"
]
}