-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "draft-js-toolbar-plugin",
"version": "2.0.0-beta5",
"description": "Toolbar Plugin for DraftJS",
"author": {
"name": "Benjamin Kniffler",
"email": "[email protected]"
},
"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",
"find-with-regex": "^1.0.2",
"union-class-names": "^1.0.0",
"draft-js": ">=0.8.1",
"immutable": ">=3.8.1",
"react": ">=15.2.1",
"react-dom": ">=15.2.1"
}
}