-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "quill-synonym",
"version": "1.0.3",
"description": "A Quill.js module for finding and replacing words with synonyms",
"main": "dist/synonym.esm.js",
"style": "dist/synonym.css",
"module": "dist/synonym.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"test": "jasmine-browser-runner runSpecs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uluumbch/quill-synonym.git"
},
"keywords": [
"quill",
"quilljs",
"synonym",
"editor",
"rich-text"
],
"author": "uluumbch",
"license": "MIT",
"bugs": {
"url": "https://github.com/uluumbch/quill-synonym/issues"
},
"homepage": "https://github.com/uluumbch/quill-synonym#readme",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.5.0",
"rollup": "^2.79.2",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"quill": "^2.0.0"
}
}