forked from globocom/megadraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.6 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
{
"name": "megadraft",
"version": "0.4.23",
"description": "Rich Text editor built on top of draft.js",
"main": "lib/Megadraft.js",
"dependencies": {
"backstage-modal": "^0.2.5",
"classnames": "^2.2.5",
"draft-js": "0.10.0",
"immutable": "^3.8.1",
"setimmediate": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.6.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"es6-shim": "^0.35.0",
"eslint": "^3.10.2",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.7.1",
"eslint-watch": "^2.1.14",
"estraverse-fb": "^1.3.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-sass": "^2.3.1",
"gulp-util": "^3.0.7",
"html-loader": "^0.4.3",
"jsdom": "^8.3.1",
"json-loader": "^0.5.4",
"markdown-loader": "^0.1.7",
"material-ui": "0.16.4",
"megadraft-related-articles-plugin": "0.2.1",
"merge": "^1.2.0",
"mocha": "^2.4.5",
"raw-loader": "^0.5.1",
"react": "15.2.1",
"react-addons-test-utils": "15.2.1",
"react-dom": "15.2.1",
"react-markdown": "2.3.0",
"react-router": "2.4.0",
"react-scroll": "^1.4.4",
"react-sticky": "^5.0.5",
"react-tap-event-plugin": "1.0.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"svgo": "^0.6.6",
"utils-copy": "^1.1.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"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"
}