forked from dealbee/nodebb-plugin-user-level
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.33 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
60
61
62
63
64
{
"name": "@nodebb/nodebb-plugin-user-level",
"version": "2.1.3",
"description": "A plugin to add user level",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/NodeBB-Community/nodebb-plugin-user-level"
},
"scripts": {
"lint": "eslint ."
},
"keywords": [
"nodebb",
"plugin",
"user-level",
"shell",
"user",
"level"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"maintainers": [
{
"name": "Barış Soner Uşaklı",
"email": "[email protected]",
"url": "https://github.com/barisusakli"
},
{
"name": "lamcuongdat",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeBB-Community/nodebb-plugin-user-level/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^3.2.0"
},
"dependencies": {
"validator": "13.7.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-angular": "16.2.1",
"eslint": "8.10.0",
"eslint-config-nodebb": "0.1.1",
"eslint-plugin-import": "2.25.4",
"husky": "^2.4.0",
"lint-staged": "12.3.5"
}
}