-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "@jimmycode/draft-js-toolbox",
"version": "1.0.0",
"description": "Useful goodies for DraftJS",
"keywords": [
"draft-js",
"draftjs-utils",
"goodies",
"utility",
"utils",
"toolbox"
],
"author": "JimmyCode Social <[email protected]>",
"contributors": [
{
"name": "Alberto Menendez Romero",
"url": "https://www.linkedin.com/in/albertomr86/"
}
],
"homepage": "https://github.com/jimmycodesocial/draft-js-toolbox",
"bugs": "https://github.com/jimmycodesocial/draft-js-toolbox/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/jimmycodesocial/draft-js-toolbox.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": "^0.10.1"
},
"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",
"draft-js": "^0.10.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"jest-cli": "^23.0.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-node-externals": "^1.7.2"
}
}