forked from sstur/react-rte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.44 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
{
"name": "react-rte",
"version": "0.5.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",
"test": "npm run lint && npm run typecheck && npm run test-src",
"test-src": "mocha src/__tests__/*.js src/**/__tests__/*.js"
},
"dependencies": {
"class-autobind": "^0.1.4",
"classnames": "^2.2.5",
"draft-js": "^0.7.0",
"draft-js-export-html": "^0.3.0",
"draft-js-export-markdown": "^0.2.0",
"draft-js-import-html": "^0.2.0",
"draft-js-import-markdown": "^0.1.6",
"draft-js-utils": "^0.1.5",
"immutable": "^3.8.1"
},
"peerDependencies": {
"react": "0.14.x || 15.x.x",
"react-dom": "0.14.x || 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"css-loader": "^0.23.1",
"css-modules-require-hook": "^4.0.0",
"eslint": "^3.3.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-react": "^6.1.2",
"expect": "^1.20.2",
"flow-bin": "^0.29.0",
"mocha": "^3.0.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.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": "Harris Brakmic",
"url": "https://github.com/brakmic"
},
{
"name": "Jordan Kohl",
"url": "https://github.com/simpixelated"
},
{
"name": "Simon Sturmer",
"url": "https://github.com/sstur"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/sstur/react-rte/issues"
},
"homepage": "https://github.com/sstur/react-rte#readme"
}