forked from globocom/megadraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.7 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
92
93
94
95
96
97
{
"name": "megadraft",
"version": "0.4.33",
"description": "Rich Text editor built on top of draft.js",
"main": "lib/Megadraft.js",
"dependencies": {
"backstage-modal": "^0.3.2",
"classnames": "^2.2.5",
"draft-js": "0.10.5",
"immutable": "~3.8.2",
"prop-types": "^15.5.10",
"setimmediate": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"es6-shim": "^0.35.0",
"eslint": "^4.5.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.5.1",
"eslint-watch": "^3.1.2",
"estraverse-fb": "^1.3.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-sass": "^3.1.0",
"gulp-util": "^3.0.8",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.4.0",
"json-loader": "^0.5.4",
"markdown-loader": "^2.0.1",
"material-ui": "0.18.7",
"megadraft-related-articles-plugin": "0.2.1",
"mocha": "^4.0.1",
"raw-loader": "^0.5.1",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-markdown": "3.0.1",
"react-router": "3.0.5",
"react-scroll": "^1.5.4",
"react-sticky": "^5.0.5",
"react-tap-event-plugin": "3.0.2",
"react-test-renderer": "16.1.1",
"rimraf": "^2.5.2",
"sinon": "^4.1.2",
"sinon-chai": "^2.8.0",
"svgo": "^1.0.3",
"utils-copy": "^1.1.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"peerDependencies": {
"react": "^15.6.1 || ^16.1.0",
"react-dom": "^15.6.1 || ^16.1.0"
},
"scripts": {
"start": "gulp dev-server",
"test": "mocha --opts mocha.opts",
"test:watch": "mocha -w --opts mocha.opts",
"build:lib": "babel src/ -d lib/",
"build": "npm run build:lib && gulp sass && gulp sass-copy",
"prepublish": "npm run build",
"site": "webpack --config webpack.config.site.js --optimize-minimize && gulp site-sass",
"lint": "eslint ./*.js src tests website",
"lint:watch": "esw -w src tests website",
"watch": "babel -d lib/ src/ --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globocom/megadraft.git"
},
"files": [
"dist",
"lib"
],
"keywords": [
"draftjs",
"editor",
"richtext",
"react"
],
"author": "globo.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/globocom/megadraft/issues"
},
"homepage": "https://github.com/globocom/megadraft#readme"
}