-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 923 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
38
39
40
{
"name": "quill-attachments",
"description": "Attachments plugin for Quill rich text editor",
"author": "[email protected]",
"version": "1.2.0",
"license": "MIT",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/module.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"demo": "serve ./demo",
"release": "standard-version",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"browserslist": [
"defaults",
"not IE 11",
"not dead"
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/cz-commitlint": "^13.1.0",
"commitizen": "^4.2.4",
"husky": "^7.0.2",
"parcel": "^2.0.0-rc.0",
"serve": "^12.0.1",
"standard-version": "^9.3.1"
},
"dependencies": {
"quill": "^1.3.7"
}
}