forked from kensnyder/quill-image-resize-module
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.49 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-image-resize-module",
"version": "3.0.0",
"description": "A module for Quill rich text editor to allow images to be resized.",
"main": "image-resize.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "webpack -p --progress --colors",
"dev": "webpack --progress --colors --watch",
"lint": "eslint --ext js,es6 src",
"fixlint": "eslint --fix --ext js,es6 src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kensnyder/quill-image-resize-module.git"
},
"keywords": [
"quill",
"quilljs",
"image",
"resize",
"sizer"
],
"author": "@kensnyder",
"contributors": [
{
"name": "Wikia",
"url": "https://github.com/Wikia"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kensnyder/quill-image-resize-module/issues"
},
"homepage": "https://github.com/kensnyder/quill-image-resize-module#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"webpack": "^2.3.3"
},
"dependencies": {
"lodash": "^4.17.4",
"quill": "^1.2.2",
"raw-loader": "^0.5.1"
}
}