-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "react-richtext",
"version": "0.0.3",
"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"
},
"dependencies": {
"class-autobind": "0.1.2",
"classnames": "2.2.5",
"draft-js": "0.5.0",
"draft-js-export-html": "0.1.13",
"draft-js-export-markdown": "0.1.5",
"draft-js-import-html": "0.1.8",
"draft-js-import-markdown": "0.1.4",
"draft-js-utils": "0.1.4",
"immutable": "3.8.1",
"react": "15.0.2",
"react-bootstrap": "0.29.4",
"react-dom": "15.0.2"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "6.8.0",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.3",
"babel-plugin-transform-class-properties": "6.8.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"css-loader": "0.23.1",
"css-modules-require-hook": "4.0.0",
"eslint": "2.9.0",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-flow-vars": "0.4.0",
"eslint-plugin-react": "5.0.1",
"expect": "1.19.0",
"flow-bin": "0.22.1",
"mocha": "2.4.5",
"raw-loader": "0.5.1",
"react-addons-test-utils": "15.0.2",
"rimraf": "2.5.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cox-auto-kc/react-richtext"
},
"keywords": [
"reactjs",
"draftjs",
"contenteditable",
"wysiwyg",
"richtext",
"editor"
],
"author": "Cox Automotive KC",
"license": "MIT",
"homepage": "https://github.com/cox-auto-kc/react-richtext"
}