UNPKG

1.35 kBJSONView Raw
1{
2 "name": "hyperscript.org",
3 "description": "a small scripting language for the web",
4 "keywords": [
5 "scripting",
6 "HTML"
7 ],
8 "version": "0.9.6",
9 "homepage": "https://hyperscript.org/",
10 "bugs": {
11 "url": "https://github.com/bigskysoftware/_hyperscript/issues"
12 },
13 "license": "BSD 2-Clause",
14 "files": [
15 "LICENSE",
16 "README.md",
17 "src/*"
18 ],
19 "main": "dist/_hyperscript.js",
20 "bin": {
21 "_hyperscript": "src/bin/node-hyperscript.js"
22 },
23 "scripts": {
24 "test": "mocha-chrome test/index.html",
25 "dist": "cp -r src/* dist/ && npm run-script terser && gzip -k -f dist/_hyperscript.min.js > dist/_hyperscript.min.js.gz && exit",
26 "www": "node scripts/www.js",
27 "terser": "terser dist/_hyperscript.js > dist/_hyperscript.min.js && terser dist/hdb.js > dist/hdb.min.js"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git+https://github.com/bigskysoftware/_hyperscript.git"
32 },
33 "devDependencies": {
34 "@11ty/eleventy": "^0.10.0",
35 "chai": "^4.2.0",
36 "fs-extra": "^9.0.0",
37 "markdown-it": "^12.3.2",
38 "markdown-it-anchor": "^8.4.1",
39 "markdown-it-attrs": "^4.1.3",
40 "markdown-it-table-of-contents": "^0.6.0",
41 "mocha": "^7.1.1",
42 "mocha-chrome": "^2.2.0",
43 "sinon": "^9.0.2"
44 },
45 "dependencies": {
46 "markdown-it-deflist": "^2.1.0",
47 "terser": "^5.14.1"
48 }
49}