-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "hyperscript.org",
"description": "a small scripting language for the web",
"keywords": [
"scripting",
"HTML"
],
"version": "0.9.13",
"homepage": "https://hyperscript.org/",
"bugs": {
"url": "https://github.com/bigskysoftware/_hyperscript/issues"
},
"license": "BSD 2-Clause",
"files": [
"LICENSE",
"README.md",
"src/*",
"dist/*"
],
"main": "dist/_hyperscript.min.js",
"types": "dist/_hyperscript.d.ts",
"bin": {
"_hyperscript": "src/bin/node-hyperscript.js"
},
"scripts": {
"test": "mocha-chrome test/index.html",
"dist": "cp -r src/* dist/ && npm run-script terser && npm run-script typings && gzip -k -f dist/_hyperscript.min.js > dist/_hyperscript.min.js.gz && exit",
"typings": "npx tsc --declaration dist/_hyperscript.js --allowJs --emitDeclarationOnly --skipLibCheck",
"www": "node scripts/www.js",
"terser": "terser -m eval dist/_hyperscript.js > dist/_hyperscript.min.js && terser -m eval dist/hdb.js > dist/hdb.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigskysoftware/_hyperscript.git"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"chai": "^4.2.0",
"fs-extra": "^9.0.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"markdown-it-attrs": "^4.1.3",
"markdown-it-table-of-contents": "^0.6.0",
"mocha": "^7.1.1",
"mocha-chrome": "^2.2.0",
"sinon": "^9.0.2"
},
"dependencies": {
"markdown-it-deflist": "^2.1.0",
"terser": "^5.14.1"
}
}