forked from renanbastos93/image-to-base64
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "image-to-base64",
"version": "2.0.1",
"description": "Generate a image to base64.",
"main": "image-to-base64.min.js",
"scripts": {
"minify:base": "uglifyjs image-to-base64.js -c -m -o image-to-base64.min.js",
"minify:browser": "uglifyjs browser.js -c -m -o browser.min.js",
"minify": "npm run minify:base && npm run minify:browser",
"test": "mocha ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renanbastos93/image-to-base64.git"
},
"keywords": [
"node",
"nodejs",
"module convert base64 nodejs",
"image2base64",
"image-to-base64",
"convert-image-base64",
"convert",
"save",
"code",
"base64",
"image",
"webpack",
"loader",
"img",
"src",
"img src"
],
"author": "Renan Bastos - <renanbastos.tec@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/renanbastos93/image-to-base64/issues"
},
"homepage": "https://github.com/renanbastos93/image-to-base64#readme",
"dependencies": {
"node-fetch": "^1.7.3"
},
"devDependencies": {
"uglify-js": "^3.9.1",
"mocha": "^7.1.1"
}
}