-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "hyperapp-form",
"version": "1.0.4",
"description": "utility for forms and form-validation in hyperapp",
"main": "src/index.js",
"module": "src/index.js",
"type": "module",
"unpkg": "dist.js",
"scripts": {
"test": "ava",
"build:demo": "node build-demo-site.js",
"build:dist": "rollup src/index.js --no-strict -f es --external hyperapp | terser -m -c --toplevel | sed \"s/hyperapp/https:\\/\\/unpkg.com\\/hyperapp/g\" > dist.js",
"build": "npm run build:dist && npm run build:demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaceno/hyperapp-form.git"
},
"keywords": [
"hyperapp",
"forms",
"form",
"validation"
],
"author": "Zacharias Enochsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaceno/hyperapp-form/issues"
},
"homepage": "https://github.com/zaceno/hyperapp-form#readme",
"peerDependencies": {
"hyperapp": "^2.0.5"
},
"devDependencies": {
"ava": "^3.7.0",
"es-module-shims": "^0.4.6",
"hyperapp": "^2.0.5",
"hyperlit": "^0.3.3",
"rollup": "^2.7.2",
"servor": "^3.3.1",
"terser": "^4.6.12"
},
"dependencies": {}
}