forked from riyadhalnur/node-base64-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 839 Bytes
/
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
{
"name": "node-base64-image",
"version": "0.1.1",
"description": "Download images from remote URLs and encode/decode them to base64",
"main": "index.js",
"scripts": {
"test": "mocha test/tests.js"
},
"engines": {
"node": ">=0.10"
},
"repository": "https://github.com/riyadhalnur/node-base64-image",
"homepage": "http://riyadhalnur.github.io/node-base64-image/",
"keywords": [
"image",
"download",
"base64",
"encode",
"decode",
"javascript",
"node"
],
"bugs": {
"url": "https://github.com/riyadhalnur/node-base64-image/issuess"
},
"author": "Riyadh Al Nur <[email protected]> (http://blog.verticalaxisbd.com)",
"license": "MIT",
"dependencies": {
"request": "^2.51.x"
},
"devDependencies": {
"mocha": "^2.0.x",
"should": "^4.3.x"
}
}