forked from quill-mention/quill-mention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
58
59
60
61
62
63
64
{
"name": "quill-mention",
"version": "2.1.1",
"description": "@mentions for the Quill rich text editor",
"main": "src/quill.mention.js",
"repository": "https://github.com/afconsult/quill-mention.git",
"author": "Fredrik Sundqvist <[email protected]>",
"license": "MIT",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jshint": "^2.9.5",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "4.19.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": ">=3.1.11",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"quill": "^1.3.4"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
},
"scripts": {
"start": "webpack-dev-server --hot --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"publish": "npm publish"
},
"keywords": [
"quill",
"mentions",
"autocomplete",
"mention"
]
}