forked from NodeBB/nodebb-plugin-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "nodebb-plugin-quickstart",
"version": "0.2.3",
"description": "A starter kit for quickly creating NodeBB plugins",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/psychobunny/nodebb-plugin-quickstart"
},
"keywords": [
"nodebb",
"plugin",
"quickstart",
"shell"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": {
"name": "psychobunny",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/psychobunny/nodebb-plugin-quickstart/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-angular": "^7.3.1",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0"
}
}