-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"name": "nodebb-plugin-category-queue",
"version": "1.0.7",
"description": "A plugin for making post queue category specific",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/Veronikya/nodebb-plugin-category-queue"
},
"keywords": [
"nodebb",
"plugin",
"category-queue",
"shell",
"post-queue",
"queue"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Veronikya/nodebb-plugin-category-queue/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.11.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-angular": "^8.3.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.15.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8"
}
}