forked from dburrows/draft-js-basic-html-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.73 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.73 KB
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
{
"name": "draft-js-basic-html-editor",
"version": "1.0.10",
"description": "",
"keywords": [
"draftjs",
"editor",
"react",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/dburrows/draft-js-basic-html-editor.git"
},
"main": "dist/index.js",
"scripts": {
"dist-example": "webpack --config webpack.example-dist.config.js",
"dist": "webpack --display-modules --config webpack.dist.config.js -p",
"test-watch": "mocha --recursive --compilers js:babel-register -r babel-polyfill -w tests/",
"release": "npm run dist && release-it"
},
"author": "David Burrows <david@designsuperbuild.com>",
"license": "MIT",
"dependencies": {
"draft-js": "^0.9.1",
"lodash": "^4.6.1"
},
"peerDependencies": {
"react": "^15",
"react-dom": "^15"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.0.0",
"eslint": "^2.9.0",
"eslint-plugin-react": "^5.0.1",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"node-sass": "^3.4.2",
"react": "^15",
"react-dom": "^15",
"react-hot-loader": "^1.3.0",
"release-it": "^2.3.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
}
}