-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "nodebb-plugin-composer-quill",
"version": "4.0.1",
"description": "Quill Composer for NodeBB",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/NodeBB/nodebb-plugin-composer-quill"
},
"keywords": [
"nodebb",
"plugin",
"composer",
"quill"
],
"author": {
"name": "NodeBB Team",
"email": "sales@nodebb.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeBB/nodebb-plugin-composer-quill/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^3.2.0"
},
"dependencies": {
"async": "^3.2.0",
"is-html": "^2.0.0",
"markdown-it": "^12.0.0",
"node-quill-converter": "^0.3.2",
"quill": "^1.3.6",
"quill-delta-to-html": "^0.12.0",
"quill-magic-url": "^4.0.0",
"screenfull": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-angular": "19.6.0",
"eslint": "9.15.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.2.10"
}
}