forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "slate-react",
"description": "A set of React components for building completely customizable rich-text editors.",
"version": "0.21.23",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "lib/slate-react.js",
"module": "lib/slate-react.es.js",
"umd": "dist/slate-react.js",
"umdMin": "dist/slate-react.min.js",
"files": [
"dist/",
"lib/"
],
"dependencies": {
"debug": "^3.1.0",
"get-window": "^1.1.1",
"is-window": "^1.0.2",
"lodash": "^4.1.1",
"memoize-one": "^4.0.0",
"prop-types": "^15.5.8",
"react-immutable-proptypes": "^2.1.0",
"selection-is-backward": "^1.0.0",
"slate-base64-serializer": "^0.2.101",
"slate-dev-environment": "^0.2.2",
"slate-hotkeys": "^0.2.9",
"slate-plain-serializer": "^0.7.0",
"slate-prop-types": "^0.5.31",
"slate-react-placeholder": "^0.1.19",
"tiny-invariant": "^1.0.1",
"tiny-warning": "^0.0.3"
},
"peerDependencies": {
"immutable": ">=3.8.1 || >4.0.0-rc",
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"slate": ">=0.43.6"
},
"devDependencies": {
"immutable": "^3.8.1",
"mocha": "^2.5.3",
"react-test-renderer": "^16.6.3",
"slate": "^0.46.0",
"slate-hyperscript": "^0.12.0"
},
"scripts": {
"clean": "rm -rf ./dist ./lib ./node_modules"
},
"umdGlobals": {
"immutable": "Immutable",
"react": "React",
"react-dom": "ReactDOM",
"slate": "Slate"
},
"keywords": [
"canvas",
"contenteditable",
"doc",
"docs",
"document",
"edit",
"editor",
"html",
"immutable",
"markdown",
"medium",
"paper",
"react",
"rich",
"rich-text",
"richtext",
"slate",
"text",
"wysiwyg",
"wysiwym"
]
}