forked from Yehonatan-Albert/nodebb-plugin-change-reputation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 868 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
{
"name": "nodebb-plugin-change-reputation",
"version": "1.0.2",
"main": "library.js",
"repository": "https://github.com/Yehonatan-Albert/nodebb-plugin-change-reputation",
"keywords": [
"nodebb",
"plugin",
"change",
"reputation"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": "Yehonatan",
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.15.0"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-angular": "15.0.0",
"eslint": "8.3.0",
"eslint-config-nodebb": "0.1.1",
"eslint-plugin-import": "2.25.3",
"husky": "7.0.4",
"lint-staged": "12.1.2"
}
}