forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 812 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
{
"name": "slate-hyperscript",
"description": "A hyperscript helper for creating Slate documents.",
"version": "0.13.8",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "lib/slate-hyperscript.js",
"module": "lib/slate-hyperscript.es.js",
"umd": "dist/slate-hyperscript.js",
"umdMin": "dist/slate-hyperscript.min.js",
"files": [
"dist/",
"lib/"
],
"dependencies": {
"is-plain-object": "^2.0.4"
},
"peerDependencies": {
"slate": ">=0.47.0"
},
"devDependencies": {
"mocha": "^2.5.3",
"slate": "^0.47.8"
},
"scripts": {
"clean": "rm -rf ./dist ./lib ./node_modules"
},
"umdGlobals": {
"slate": "Slate"
},
"keywords": [
"hyperscript",
"jsx",
"html",
"slate",
"sugar",
"xml"
]
}