-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "quill-cursors",
"version": "4.0.3",
"description": "A multi cursor module for Quill.",
"keywords": [
"quill",
"module",
"collaborative",
"editing"
],
"contributors": [
"Pedro Machado Santa <[email protected]>",
"Alec Gibson <[email protected]>",
"Oleg Petrov <[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-plugin": "^0.14.2",
"@testing-library/jest-dom": "^5.16.1",
"@types/jest": "^27.4.0",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.6.0",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"quill": "^1.3.7",
"quill-delta": "^4.2.2",
"rangefix": "^0.2.10",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"tinycolor2": "^1.4.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}