forked from ismyrnow/draft-js-autocomplete-plugin-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "draft-js-autocomplete-plugin-creator",
"version": "0.2.0",
"description": "AutoComplete Plugin Creator for Draft JS Plugins",
"author": {
"name": "Matt Russell",
"email": "[email protected]"
},
"files": [
"*.md",
"LICENSE",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/mjrussell/draft-js-autocomplete-plugin-creator.git"
},
"main": "lib/index.js",
"keywords": [
"draft-js-plugins",
"draft",
"react",
"components",
"react-component"
],
"peerDependencies": {
"draft-js": ">=0.9.1",
"immutable": ">=3.7.6",
"react": ">=0.14.0 || 15.0.0-rc",
"react-dom": ">=0.14.0 || 15.0.0-rc"
},
"scripts": {
"clean": "./node_modules/.bin/rimraf lib",
"build": "npm run clean && npm run build:js",
"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",
"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"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"rimraf": "^2.5.2",
"webpack": "^1.13.1"
}
}