forked from ismyrnow/draft-js-typeahead-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "draft-js-typeahead-plugin",
"version": "2.0.2",
"description": "Slack/Github style autocomplete plugin for DraftJS Plugins",
"author": {
"name": "Ishmael Smyrnow",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ismyrnow/draft-js-typeahead-plugin.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": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"scripts": {
"clean": "./node_modules/.bin/rimraf lib",
"build": "npm run clean && npm run build:js",
"build:js": "BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production ./node_modules/.bin/babel --out-dir='lib' src",
"prepublish": "npm run build"
},
"license": "MIT",
"dependencies": {
"draft-js-autocomplete-plugin-creator": "ismyrnow/draft-js-autocomplete-plugin-creator.git#v3.0.0",
"find-with-regex": "^1.1.3",
"lodash.escaperegexp": "^4.1.2",
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"rimraf": "^3.0.2"
}
}