-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
65 lines (65 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
{
"name": "draft-js-autocomplete",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "git+https://github.com/Backelite/draft-js-autocomplete.git"
},
"author": "Laurent Bello <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/",
"LICENSE.md"
],
"keywords": [
"draftjs",
"editor",
"react",
"autocomplete"
],
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest --watch",
"coverage": "jest --coverage",
"prepublish": "rm -rf ./dist && npm run build"
},
"peerDependencies": {
"draft-js": "^0.10.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"draft-js": "^0.10.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dev-utils": "^5.0.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"sinon": "^6.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"description": "This component provide you an easy and quickly way to add autocompletion to [draft-js v0.10](https://draftjs.org/).",
"bugs": {
"url": "https://github.com/Backelite/draft-js-autocomplete/issues"
},
"homepage": "https://github.com/Backelite/draft-js-autocomplete#readme",
"directories": {
"example": "example"
}
}