-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
{
"name": "@jimmycode/draft-js-iframely-plugin",
"version": "1.0.2",
"description": "Embed links with iframe.ly into your draft-js editor",
"keywords": [
"draft-js",
"draftjs-plugins",
"iframely",
"embed",
"oEmbed",
"link-preview",
"draft-plugin",
"editor-plugin",
"editor",
"wysiwyg"
],
"author": "JimmyCode Social <hi@jimmycode.com>",
"contributors": [
{
"name": "Alberto Menendez Romero",
"url": "https://www.linkedin.com/in/albertomr86/"
}
],
"homepage": "https://github.com/jimmycodesocial/draft-js-iframely-plugin",
"bugs": "https://github.com/jimmycodesocial/draft-js-iframely-plugin/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/jimmycodesocial/draft-js-iframely-plugin.git"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"clean": "node_modules/.bin/rimraf lib",
"build": "npm run clean && npm run build:js",
"build:js": "webpack --config ./webpack.config.js --mode production",
"prepublish": "npm run build"
},
"peerDependencies": {
"draft-js-plugins-editor": "^2.0.1",
"draft-js": "^0.10.1",
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0"
},
"devDependencies": {
"autoprefixer": "^8.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"css-modules-require-hook": "^4.2.3",
"draft-js": "^0.10.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest-cli": "^23.0.1",
"mocha": "^5.2.0",
"postcss-loader": "^2.1.5",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rimraf": "^2.6.2",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@jimmycode/draft-js-toolbox": "^1.0.0",
"decorate-component-with-props": "^1.1.0",
"is-url": "^1.2.4",
"prop-types": "^15.6.1",
"union-class-names": "^1.0.0"
}
}