mirror of
https://hk.gh-proxy.com/https://github.com/NodeBB/nodebb-plugin-quickstart.git
synced 2025-10-03 04:30:57 +08:00
45 lines
994 B
JSON
45 lines
994 B
JSON
{
|
|
"name": "nodebb-plugin-quickstart",
|
|
"version": "0.4.3",
|
|
"description": "A starter kit for quickly creating NodeBB plugins",
|
|
"main": "library.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nodebb/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"
|
|
]
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nodebb/nodebb-plugin-quickstart/issues"
|
|
},
|
|
"readmeFilename": "README.md",
|
|
"nbbpm": {
|
|
"compatibility": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.1.2",
|
|
"@commitlint/config-angular": "17.1.0",
|
|
"eslint": "8.26.0",
|
|
"eslint-config-nodebb": "0.1.1",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"husky": "8.0.1",
|
|
"lint-staged": "13.0.3"
|
|
}
|
|
}
|