forked from sstur/react-rte
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
134 lines (134 loc) · 3.41 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-rte",
"version": "0.11.0",
"description": "React Rich Text Editor",
"main": "dist/react-rte.js",
"scripts": {
"build": "npm run build-lib && npm run build-dist",
"build-dist": "rimraf dist && webpack",
"build-lib": "rimraf lib && babel src --ignore \"_*\" --out-dir lib",
"lint": "eslint --max-warnings 0 .",
"typecheck": "flow",
"prepublish": "npm run build",
"start": "webpack-dev-server --content-base assets/",
"test": "npm run lint && npm run typecheck && npm run test-src",
"test-src": "mocha \"src/**/__tests__/*.js\""
},
"dependencies": {
"babel-runtime": "^6.23.0",
"class-autobind": "^0.1.4",
"classnames": "^2.2.5",
"draft-js": "^0.10.0",
"draft-js-export-html": "^0.5.4",
"draft-js-export-markdown": "^0.2.2",
"draft-js-import-html": "^0.3.2",
"draft-js-import-markdown": "^0.2.1",
"draft-js-utils": "^0.1.7",
"immutable": "^3.8.1"
},
"peerDependencies": {
"react": "0.14.x || 15.x.x",
"react-dom": "0.14.x || 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.25.0",
"css-modules-require-hook": "^4.0.0",
"eslint": "^3.9.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-react": "^6.5.0",
"expect": "^1.20.2",
"flow-bin": "^0.32.0",
"mocha": "^3.1.2",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.0.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sstur/react-rte.git"
},
"keywords": [
"reactjs",
"draftjs",
"contenteditable",
"wysiwyg",
"richtext",
"editor"
],
"author": "[email protected]",
"contributors": [
{
"name": "Adam J. McIntyre",
"url": "https://github.com/amcintyre-cs"
},
{
"name": "André Schmidt",
"url": "https://github.com/andschdk"
},
{
"name": "Harris Brakmic",
"url": "https://github.com/brakmic"
},
{
"name": "Forbes Lindesay",
"url": "https://github.com/ForbesLindesay"
},
{
"name": "Kristopher Craw",
"url": "https://github.com/KCraw"
},
{
"name": "Rory Hunter",
"url": "https://github.com/pugnascotia"
},
{
"name": "Ralph Schindler",
"url": "https://github.com/ralphschindler"
},
{
"name": "RaoHai",
"url": "https://github.com/RaoHai"
},
{
"name": "Jordan Kohl",
"url": "https://github.com/simpixelated"
},
{
"name": "Steffen Kolmer",
"url": "https://github.com/skolmer"
},
{
"name": "Simon Sturmer",
"url": "https://github.com/sstur"
},
{
"name": "Waldir Pimenta",
"url": "https://github.com/waldyrious"
},
{
"name": "Zach Silveira",
"url": "https://github.com/zackify"
},
{
"name": "Hyunyoung Cho",
"url": "https://github.com/ZeroCho"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/sstur/react-rte/issues"
},
"homepage": "https://github.com/sstur/react-rte#readme"
}