forked from jpuri/html-to-draftjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 934 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 934 Bytes
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
{
"name": "html-to-draftjs",
"version": "1.0.0",
"main": "dist/html-to-draftjs.js",
"repository": {
"type": "git",
"url": "https://github.com/jpuri/html-to-draftjs.git"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.0",
"draft-js": "^0.10.1",
"draftjs-to-html": "^0.7.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-draft-wysiwyg": "^1.10.7",
"react-scripts": "1.0.10",
"rimraf": "^2.6.1",
"webpack": "^3.3.0"
},
"peerDependencies": {
"draft-js": "^0.9.x || ^0.10.x"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"clean": "rimraf dist",
"build": "npm run clean && webpack --config config/webpack.build.js"
},
"author": "Jyoti Puri",
"license": "MIT"
}