-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "quill-image-uploader",
"version": "1.3.0",
"repository": "https://github.com/noeloconnell/quill-image-uploader.git",
"description": "A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded",
"main": "src/quill.imageUploader.js",
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true
}
},
"scripts": {
"watch": "webpack --watch --progress --mode production",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"publish": "npm publish"
},
"keywords": [
"quill",
"quilljs",
"image",
"upload"
],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-env": "1.7.0",
"css-loader": "3.5.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jshint": "2.11.0",
"style-loader": "0.19.1",
"terser-webpack-plugin": "2.3.6",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.3"
},
"peerDependencies": {
"quill": "^1.3.7"
}
}