-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "nodebb-plugin-imgbed",
"version": "1.1.6",
"description": "Creates an image tag to an image url that you post",
"main": "library.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "mocha test/test.js",
"posttest": "npm run lint",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/bdharrington7/nodebb-plugin-imgbed.git"
},
"keywords": [
"nodebb",
"plugin",
"image",
"embed",
"embedding"
],
"author": "Brian Harrington <[email protected]> (https://bdharrington.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bdharrington7/nodebb-plugin-imgbed/issues"
},
"dependencies": {
"cache-lru": "^1.1.10",
"snyk": "^1.667.0",
"winston": "^3.2.1"
},
"devDependencies": {
"mocha": "^8.1.1",
"mockery": "^2.1.0",
"rewire": "^5.0.0",
"standard": "^14.3.4"
},
"nbbpm": {
"compatibility": "1.x.x"
},
"engines": {
"node": ">=10"
},
"snyk": true
}