forked from quill-mention/quill-mention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "quill-mention",
"version": "3.0.4",
"description": "@mentions for the Quill rich text editor",
"main": "dist/quill.mention.csj.js",
"module": "dist/quill.mention.esm.js",
"repository": "https://github.com/afry/quill-mention.git",
"author": "Fredrik Sundqvist <[email protected]>",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"quill": "^1.3.4"
},
"devDependencies": {
"@ava/babel": "^0.4.0",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"ava": "^3.15.0",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^5.3.0",
"serve": "^11.3.2"
},
"scripts": {
"start": "concurrently \"rollup -c -w\" \"serve docs\"",
"build": "rollup -c",
"test": "ava"
},
"ava": {
"require": [
"@babel/register"
]
},
"keywords": [
"quill",
"mentions",
"autocomplete",
"mention"
]
}