-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 822 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 822 Bytes
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
{
"name": "hyperscript-html",
"version": "2.0.0",
"description": "A fast, simple, hyperscript implementation for generating HTML.",
"main": "src/index",
"repository": "https://github.com/arccoza/hyperscript-html",
"bugs": "https://github.com/arccoza/hyperscript-html/issues",
"author": "Adrien de Pierres <[email protected]>",
"license": "MIT",
"keywords": [
"hyperscript",
"HTML",
"HTML5",
"renderer",
"generator",
"simple",
"fast",
"small",
"tiny",
"micro",
"terse"
],
"scripts": {
"build": "",
"test": "./run-test",
"bench": "./run-bench"
},
"dependencies": {
"zenhand": "^2.0.0"
},
"devDependencies": {
"tap-diff": "^0.1.1",
"tape": "^4.8.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"src/"
]
}