-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "nodebb-plugin-write-api",
"version": "5.8.12",
"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": "19.6.1",
"@commitlint/config-angular": "19.6.0",
"eslint": "9.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.4.3"
}
}