-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "material-ui-html-field",
"version": "0.1.3",
"description": "Html WYSIWYG editor based on react & material-ui & simditor",
"main": "lib/html-field.js",
"scripts": {
"build": "node_modules/babel-cli/bin/babel.js ./src --out-dir ./lib",
"prebuild": "rimraf lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maichong/material-ui-html-field.git"
},
"keywords": [
"Html",
"WYSIWYG",
"editor",
"material-ui",
"react",
"simditor"
],
"author": {
"name": "Liang",
"email": "[email protected]",
"url": "https://github.com/liangxingchen"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maichong/material-ui-html-field/issues"
},
"homepage": "https://github.com/maichong/material-ui-html-field#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"rimraf": "^2.5.0"
},
"peerDependencies": {
"react": "^0.14.3"
},
"dependencies": {
"simditor": "^2.3.6"
}
}