-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.17 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
{
"name": "nodebb-plugin-category-queue",
"version": "2.0.0",
"description": "A plugin for making post queue category specific",
"main": "library.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/oplik0/nodebb-plugin-category-queue"
},
"keywords": [
"nodebb",
"plugin",
"category-queue",
"post-queue",
"queue"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"dprint fmt",
"eslint --fix",
"git add"
]
},
"author": {
"name": "opliko",
"email": "opliko.reg+npm@protonmail.com",
"url": "https://wieloswiat.pl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oplik0/nodebb-plugin-category-queue/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-angular": "18.6.1",
"dprint": "^0.49.0",
"eslint": "8.57.1",
"eslint-config-nodebb": "0.2.1",
"eslint-plugin-import": "2.31.0",
"husky": "8.0.3",
"lint-staged": "15.4.3"
}
}