forked from dooly-ai/draft-js-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "draft-js-typeahead",
"version": "0.1.2",
"description": "Typeaheads for Draft.js inspired by Facebook.com",
"keywords": [
"react",
"draft-js",
"mentions",
"typeahead",
"editor"
],
"homepage": "https://github.com/dooly-ai/draft-js-typeahead",
"license": "MIT",
"author": {
"name": "Justin Vaillancourt",
"email": "[email protected]",
"url": ""
},
"files": [
"dist",
"lib"
],
"main": "lib/index.js",
"repository": "dooly-ai/draft-js-typeahead",
"scripts": {
"prepublish": "gulp"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-transform-in-browser": "^6.4.6",
"del": "^2.2.0",
"draft-js": ">0.8.1",
"es6-shim": "^0.35.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"immutable": "^3.7.6",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"run-sequence": "^1.1.5",
"webpack-stream": "^3.1.0"
},
"peerDependencies": {
"draft-js": ">=0.8.1",
"immutable": ">=3.7.6",
"react": ">=0.14.7",
"react-dom": ">=0.14.7"
}
}