This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.83 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-quill",
"version": "1.3.3",
"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": "lib/index.js",
"browser": "lib/index.js",
"types": "types.d.ts",
"scripts": {
"test": "make test",
"build": "make build",
"prepack": "make build",
"postpack": "make clean",
"prepublish": "make build",
"postpublish": "make clean"
},
"engines": {
"node": ">= 0.8.x"
},
"keywords": [
"react",
"react-component",
"rich",
"text",
"rich-text",
"textarea",
"quill"
],
"files": [
"dist/",
"lib/",
"types.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@types/quill": "1.3.10",
"@types/react": "*",
"create-react-class": "^15.6.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"quill": "^1.2.6",
"react-dom-factories": "^1.0.0"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"devDependencies": {
"blanket": "^1.2.3",
"chai": "^4.1.0",
"chai-enzyme": "^0.8.0",
"cheerio": "^1.0.0-rc.1",
"enzyme": "^2.9.1",
"jsdom": "^16.5.0",
"jsdom-global": "^3.0.2",
"jshint": "^2.9.4",
"mocha": "^3.4.2",
"mocha-text-cov": "^0.1.1",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"should": "^4.3.0",
"sinon": "^2.3.5",
"travis-cov": "^0.2.5",
"uglify-js": "^3.0.18",
"webpack": "^1.4.13"
}
}