forked from MilWolf/nodebb-plugin-image-md-size
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
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/nodebb-plugin-image-md-size",
"version": "0.9.1",
"description": "NodeBB plugin which allows you to change the size of a markdown image in a post using the @ character.",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/NodeBB-Community/nodebb-plugin-image-md-size"
},
"keywords": [
"nodebb",
"plugin",
"image",
"size",
"markdown"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": {
"name": "MilWolf",
"email": "julienhtbe@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MilWolf/nodebb-plugin-image-md-size/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": ">=1.0.0 <5.0.0"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-angular": "13.1.0",
"eslint": "7.32.0",
"eslint-config-nodebb": "0.0.1",
"eslint-plugin-import": "2.24.1",
"husky": "7.0.1",
"lint-staged": "11.1.2"
}
}