This repository was archived by the owner on Nov 6, 2021. It is now read-only.
forked from HubSpot/draft-extend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 KB
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
{
"name": "draft-extend",
"version": "1.5.1",
"description": "Build extensible Draft.js editors with configurable plugins and integrated serialization.",
"main": "lib/index.js",
"repository": "HubSpot/draft-extend",
"scripts": {
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:css",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "webpack --config webpack.config.development.js ./src/index.js ./dist/draft-extend.js",
"build:umd:min": "webpack --config webpack.config.production.js ./src/index.js ./dist/draft-extend.min.js",
"build:css": "cp ./src/style/*.css ./dist/",
"clean": "rm -rf ./dist && rm -rf ./lib",
"prepublish": "npm run build"
},
"files": [
"dist",
"lib"
],
"keywords": [
"draft",
"extend",
"plugin",
"draft-js"
],
"author": "Ben Briggs",
"peerDependencies": {
"draft-js": ">=0.7.0",
"react": ">=15.0.2",
"react-dom": ">=15.0.2"
},
"dependencies": {
"immutable": "^3.8.1",
"invariant": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-standalone": "^6.7.7",
"draft-convert": "^1.3.1",
"draft-js": "^0.8.1",
"es6-shim": "^0.35.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"webpack": "^1.13.0"
}
}