forked from quill-mention/quill-mention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
56
57
{
"name": "@creately/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": {
"type": "git",
"url": "git@github.com:creately/quill-mention.git"
},
"author": "Fredrik Sundqvist <fsundqvist@gmail.com>",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@creately/quill": "^1.3.1"
},
"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": "^2.4.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": "^2.9.0",
"rollup-plugin-terser": "^5.3.0",
"serve": "^11.3.2"
},
"scripts": {
"start": "concurrently \"rollup -c -w\" \"serve docs\"",
"build": "rollup -c",
"test": "ava",
"prepublishOnly": "npm run build"
},
"ava": {
"require": [
"@babel/register"
]
},
"keywords": [
"quill",
"mentions",
"autocomplete",
"mention"
]
}