forked from riyadhalnur/node-base64-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "node-base64-image",
"version": "1.0.4",
"description": "Download images from remote URLs and encode/decode them to base64",
"main": "dist/node-base64-image.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"test-browser": "gulp test-browser",
"watch": "gulp watch",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"coverage": "gulp coverage",
"tag": "gulp tag",
"doc": "gulp doc",
"prepublish": "npm run build && npm run coverage && npm run tag"
},
"repository": {
"type": "git",
"url": "https://github.com/riyadhalnur/node-base64-image.git"
},
"keywords": [
"image",
"download",
"base64",
"encode",
"decode",
"javascript",
"node"
],
"author": "Riyadh Al Nur <[email protected]> (https://riyadhalnur.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riyadhalnur/node-base64-image/issues"
},
"homepage": "http://riyadhalnur.github.io/node-base64-image/",
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "^6.3.26",
"babel-eslint": "6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-flow-strip-types": "6.7.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"coveralls": "2.11.9",
"eslint": "2.10.2",
"eslint-plugin-flow-vars": "0.4.0",
"flow-bin": "0.25.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-documentation": "2.2.0",
"gulp-eslint": "^2.0.0",
"gulp-filter": "^3.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-tag-version": "1.3.0",
"gulp-util": "^3.0.7",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"babelBoilerplateOptions": {
"entryFileName": "node-base64-image",
"mainVarName": "base64"
},
"dependencies": {
"lodash": "4.11.1",
"polygoat": "1.1.4",
"request": "2.81.0"
}
}