forked from zenoamaro/react-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.17 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
{
"name": "react-quill",
"version": "0.3.0",
"description": "The Quill rich-text editor as a React component.",
"author": "zenoamaro <[email protected]>",
"homepage": "https://github.com/zenoamaro/react-quill",
"license": "MIT",
"bugs": {
"url": "https://github.com/zenoamaro/react-quill/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/zenoamaro/react-quill.git"
},
"main": "src/index.js",
"scripts": {
"test": "make test",
"build": "make build"
},
"engines": {
"node": ">= 0.8.x"
},
"keywords": [
"react",
"react-component",
"rich",
"text",
"rich-text",
"textarea"
],
"files": [
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"quill": "^0.20.0"
},
"peerDependencies": {
"react": ">=0.11.0"
},
"devDependencies": {
"blanket": "^1.1.6",
"jsdom": "^1.2.1",
"jshint": "^2.5.10",
"mocha": "^2.0.1",
"mocha-text-cov": "^0.1.0",
"react": "^0.12.0",
"should": "^4.3.0",
"sinon": "^1.12.1",
"travis-cov": "^0.2.5",
"uglify-js": "^2.4.15",
"webpack": "^1.4.13"
}
}