forked from bigskysoftware/_hyperscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.18 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hyperscript.org",
"description": "a small scripting language for the web",
"keywords": [
"scripting",
"HTML"
],
"version": "0.9.0",
"homepage": "https://hyperscript.org/",
"bugs": {
"url": "https://github.com/bigskysoftware/_hyperscript/issues"
},
"license": "BSD 2-Clause",
"files": [
"LICENSE",
"README.md",
"dist/*"
],
"main": "dist/_hyperscript_web.min.js",
"exports": {
".": {
"import": "./dist/_hyperscript_web.modern.js",
"umd": "./dist/_hyperscript_web.min.js"
},
"./worker": {
"import": "./dist/worker.modern.js",
"umd": "./dist/worker.min.js"
},
"./socket": {
"import": "./dist/socket.modern.js",
"umd": "./dist/socket.min.js"
},
"./eventsource": {
"import": "./dist/eventsource.modern.js",
"umd": "./dist/eventsource.min.js"
},
"./hdb": {
"import": "./dist/hdb.modern.js",
"umd": "./dist/eventsource.min.js"
},
"./template": {
"import": "./dist/hdb.modern.js",
"umd": "./dist/eventsource.min.js"
}
},
"module": "./dist/_hyperscript_web.esm.js",
"unpkg": "dist/_hyperscript_web.min.js",
"bin": {
"_hyperscript": "src/bin/node-hyperscript.js"
},
"scripts": {
"test": "mocha-chrome test/index.html",
"www": "node scripts/www.js",
"dist": "npm run clear && npm run copy && npm run bundle-all",
"clear": "rm -rf dist/*",
"copy": "cp -r src/* dist/",
"bundle-module-plugins": "microbundle src/lib/plugin/*.js -f modern",
"bundle-umd-plugins": "microbundle src/web/plugin/*.js -f umd",
"bundle-hyperscript": "microbundle src/web/*.js -f modern,umd --name _hyperscript",
"bundle-all": "npm run bundle-hyperscript && npm run bundle-module-plugins && npm run bundle-umd-plugins"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigskysoftware/_hyperscript.git"
},
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"chai": "^4.2.0",
"eleventy-plugin-sass": "^1.0.0",
"fs-extra": "^9.0.0",
"microbundle": "^0.13.3",
"mocha": "^7.1.1",
"mocha-chrome": "^2.2.0",
"node-sass": "^5.0.0",
"sass": "^1.32.8",
"sinon": "^9.0.2"
}
}