forked from reedsy/quill-cursors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "quill-cursors",
"version": "3.1.0",
"description": "A multi cursor module for Quill.",
"keywords": [
"quill",
"module",
"collaborative",
"editing"
],
"contributors": [
"Pedro Machado Santa <[email protected]>",
"Alec Gibson <[email protected]>"
],
"license": "MIT",
"main": "dist/quill-cursors.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && NODE_ENV=production ./node_modules/.bin/webpack",
"lint": "eslint '**/*'",
"start": "webpack serve --open",
"test": "NODE_ENV=test jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reedsy/quill-cursors.git"
},
"devDependencies": {
"@reedsy/eslint-config-reedsy": "github:reedsy/eslint-config-reedsy#3.5.0",
"@testing-library/jest-dom": "^5.12.0",
"@types/jest": "^26.0.23",
"@types/tinycolor2": "^1.4.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^27.0.1",
"quill": "^1.3.7",
"quill-delta": "^4.2.2",
"rangefix": "^0.2.9",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"tinycolor2": "^1.4.2",
"ts-jest": "^27.0.0",
"ts-loader": "^9.2.2",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {}
}