-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 921 Bytes
/
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
{
"name": "vuejs-quill",
"version": "1.4.0",
"description": "A Quill wrapper for vue.js",
"main": "src/index.js",
"scripts": {
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanTreffler/vuejs-quill.git"
},
"keywords": [
"vue",
"vuejs",
"quill",
"editor",
"WYSIWYG",
"wrapper"
],
"author": "Jonathan Treffler",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/JonathanTreffler/vuejs-quill/issues"
},
"homepage": "https://github.com/JonathanTreffler/vuejs-quill#readme",
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-jonathantreffler": "^1.3.0",
"eslint-plugin-vue": "^7.0.0"
},
"dependencies": {
"quill": "^1.3.7"
}
}