mirror of
https://hk.gh-proxy.com/https://github.com/NodeBB/nodebb-plugin-write-api.git
synced 2025-10-03 04:21:06 +08:00
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "nodebb-plugin-write-api",
|
|
"version": "5.8.13",
|
|
"description": "Write-enabled API for NodeBB",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/julianlam/nodebb-plugin-write-api"
|
|
},
|
|
"keywords": [
|
|
"nodebb",
|
|
"plugin",
|
|
"write",
|
|
"API",
|
|
"REST",
|
|
"JSON"
|
|
],
|
|
"author": "Julian Lam <julian@nodebb.org>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/julianlam/nodebb-plugin-write-api/issues"
|
|
},
|
|
"homepage": "https://github.com/julianlam/nodebb-plugin-write-api",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"async": "^3.2.0",
|
|
"express": "^4.17.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"markdown-it": "^12.0.0",
|
|
"passport-http-bearer": "^1.0.1"
|
|
},
|
|
"nbbpm": {
|
|
"compatibility": "^1.17.0 || ^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "20.1.0",
|
|
"@commitlint/config-angular": "20.0.0",
|
|
"eslint": "9.36.0",
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
"eslint-plugin-import": "2.32.0",
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.2.3"
|
|
}
|
|
}
|