This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
forked from yariplus/nodebb-plugin-camo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
59
60
61
{
"name": "nodebb-plugin-camo",
"version": "1.4.2",
"homepage": "https://github.com/minora-oss/nodebb-plugin-camo",
"description": "Route embedded images through a secure camo proxy",
"main": "lib/camo.js",
"repository": {
"type": "git",
"url": "https://github.com/minora-oss/nodebb-plugin-camo"
},
"scripts": {
"compile": "babel src -d .",
"pretest": "npm run compile",
"test": "nyc --require babel-register mocha test/**/*.es6"
},
"keywords": [
"nodebb",
"plugin",
"camo",
"secure",
"images"
],
"author": {
"name": "Minora Network",
"email": "[email protected]"
},
"contributors": [
{
"name": "yariplus",
"email": "[email protected]"
},
{
"name": "lenovouser",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/minora-oss/nodebb-plugin-camo/issues",
"email": "[email protected]"
},
"readmeFilename": "readme.md",
"dependencies": {
"camo-url": "^0.1.3",
"camo": "git+https://github.com/atmos/camo.git#e6e9f047674f418a24034c68a80babce83573224"
},
"nbbpm": {
"compatibility": "^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"nyc": "^6.4.4",
"standard": "^7.1.2"
}
}