-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "draft-js-inline-toolbar-plugin",
"version": "2.0.0-beta9",
"description": "Toolbar Plugin for DraftJS",
"author": {
"name": "Benjamin Kniffler",
"email": "benjamin@kniffler.com"
},
"repository": {
"type": "git",
"url": "https://github.com/draft-js-plugins/draft-js-plugins.git"
},
"main": "lib/index.js",
"keywords": [
"editor",
"wysiwyg",
"draft",
"react",
"ux",
"components",
"widget",
"react-component"
],
"scripts": {
"clean": "../node_modules/.bin/rimraf lib",
"build": "npm run clean && npm run build:js && npm run build:css",
"build:js": "WEBPACK_CONFIG=$(pwd)/webpack.config.js BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production ../node_modules/.bin/babel --out-dir='lib' --ignore='__test__/*' src",
"build:css": "node ../scripts/concatCssFiles $(pwd) && ../node_modules/.bin/rimraf lib-css",
"prepublish": "npm run build"
},
"license": "MIT",
"dependencies": {
"decorate-component-with-props": "^1.0.2",
"draft-js": ">=0.9.1",
"draft-js-buttons": "github:neuron-digital/draft-js-buttons#c4024e0",
"find-with-regex": "^1.0.2",
"immutable": "~3.7.4",
"union-class-names": "^1.0.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}