forked from choojs/nanohtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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": "@tram-one/nanohtml",
"version": "5.1.0",
"description": "A simple function for creating composable DOM elements using tagged template strings.",
"main": "index.js",
"scripts": {
"lint": "xo ./*.js",
"start": "wzrd test/index.js:bundle.js",
"test": "browserify test/index.js | tape-run",
"bench": "wzrd bench/index.js:bundle.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Tram-One/nanohtml"
},
"keywords": [
"bel",
"bel-create-element",
"belit",
"nanohtml",
"virtual-dom",
"element",
"diffhtml",
"tram-one"
],
"original-author": "Kyle Robinson Young <[email protected]> (http://dontkry.com)",
"author": "Jesse Jurman <[email protected]> (http://jrjurman.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tram-One/nanohtml/issues"
},
"homepage": "https://github.com/Tram-One/nanohtml",
"dependencies": {},
"devDependencies": {
"browser-process-hrtime": "^0.1.2",
"browserify": "^14.4.0",
"electron": "^1.8.8",
"eslint-config-tram-one": "^1.2.0",
"hyperx": "^2.3.1",
"is-electron": "^2.1.0",
"standard": "^10.0.3",
"tape": "^4.8.0",
"tape-run": "^3.0.0",
"wzrd": "^1.5.0",
"xo": "^0.18.2"
},
"xo": {
"extends": [
"tram-one"
]
}
}