-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 897 Bytes
/
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
{
"name": "elementx",
"version": "3.1.2",
"description": "Create complex DOM elements/trees using a functional approach",
"main": "dist.js",
"license": "MIT",
"repository": "queckezz/elementx",
"author": "queckezz <[email protected]>",
"scripts": {
"precommit": "npm test",
"test": "standard && nyc ava",
"prepublish": "buble index.js > dist.js"
},
"keywords": [
"hyperscript",
"dom",
"element",
"node",
"create dom",
"morphdom",
"nanomorph",
"unidirectional",
"virtual-dom"
],
"dependencies": {
"global-undom": "^0.1.1",
"html-tag-names": "^1.1.0",
"svg-tag-names": "^1.0.0"
},
"devDependencies": {
"ava": "^0.18.1",
"buble": "^0.15.2",
"husky": "^0.13.1",
"nyc": "^10.1.2",
"serialize-dom": "^3.0.3",
"standard": "^7.0.1",
"tsml": "^1.0.1",
"xyz": "^2.1.0"
}
}