-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "nodebb-plugin-markdown",
"version": "12.2.8",
"description": "A Markdown parser for NodeBB",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/julianlam/nodebb-plugin-markdown"
},
"keywords": [
"nodebb",
"plugin",
"markdown"
],
"author": "Julian Lam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/julianlam/nodebb-plugin-markdown/issues"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"highlight.js": "11.4.0",
"highlightjs-line-numbers.js": "^2.8.0",
"markdown-it": "^12.0.6",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-multimd-table": "^4.0.1"
},
"nbbpm": {
"compatibility": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-angular": "16.2.1",
"eslint": "8.x",
"eslint-config-nodebb": "0.1.1",
"eslint-plugin-import": "2.x",
"husky": "7.0.4",
"lint-staged": "12.3.5"
}
}