forked from quill-mention/quill-mention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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-mention",
"version": "4.1.0",
"description": "@mentions for the Quill rich text editor",
"homepage": "https://quill-mention.com/",
"main": "dist/quill.mention.csj.js",
"module": "dist/quill.mention.esm.js",
"repository": "https://github.com/quill-mention/quill-mention.git",
"author": "Fredrik Sundqvist <[email protected]>",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"quill": "^2.0.0"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"@rollup/plugin-babel": "^5.3.0",
"ava": "^5.3.1",
"concurrently": "^6.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.4.1",
"rollup": "^2.58.3",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.1"
},
"scripts": {
"start": "concurrently \"rollup -c -w\" \"serve docs\"",
"build": "rollup -c",
"lint": "prettier -w src/",
"test": "prettier -c src/ && ava"
},
"ava": {
"require": [
"@babel/register"
]
},
"keywords": [
"quill",
"mentions",
"autocomplete",
"mention"
]
}