-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
94 lines (94 loc) · 2.64 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-quill-new",
"version": "3.3.3",
"description": "The Quill rich-text editor as a React component.",
"author": "zenoamaro <[email protected]>, VaguelySerious <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/VaguelySerious/react-quill",
"bugs": "https://github.com/VaguelySerious/react-quill/issues",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/VaguelySerious/react-quill.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:lib && npm run build:css",
"build:lib": "tsc",
"build:css": "cpx 'node_modules/quill/dist/quill.*.css' dist",
"watch": "tsc --watch",
"pretest": "npm run build",
"test": "npm run test:unit && npm run test:coverage && npm run test:browser",
"test:unit": "mocha --recursive --require=./test/setup.js -R spec test/index",
"build:dist": "webpack",
"test:coverage": "mocha --recursive --require=./test/setup.js -R mocha-text-cov test/index",
"test:browser": "cypress run",
"test:browser:interactive": "cypress open",
"demo": "superstatic docs",
"clean": "rimraf lib dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"react-component",
"rich",
"text",
"rich-text",
"textarea",
"quill"
],
"files": [
"dist/",
"lib/",
"types.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"lodash": "^4.17.21",
"quill": "~2.0.2"
},
"peerDependencies": {
"quill-delta": "^5.1.0",
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@types/chai": "^4.3.16",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.6",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/sinon": "^7.5.2",
"babel-loader": "^9.1.3",
"blanket": "^1.2.3",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "^1.0.0-rc.3",
"cpx": "^1.5.0",
"cypress": "^4.3.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.2",
"mocha-text-cov": "^0.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"rimraf": "^3.0.0",
"should": "^13.2.3",
"sinon": "^7.5.0",
"superstatic": "^6.0.4",
"travis-cov": "^0.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}