-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1 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
{
"name": "js-base64-file",
"version": "2.0.3",
"description": "load fetch convert and save local and remote files and images to base64 in js",
"exports": "./index.js",
"type": "module",
"scripts": {
"test": "npm i && c8 -r lcov -r html node ./test/CI.js && c8 report"
},
"directories": {
"example": "example",
"test": "test"
},
"engines" : {
"node" : ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RIAEvangelist/js-base64-img.git"
},
"keywords": [
"base64",
"file",
"local",
"fetch",
"remote",
"image",
"dataURI"
],
"author": "Brandon Nozaki Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/RIAEvangelist/js-base64-img/issues"
},
"homepage": "https://github.com/RIAEvangelist/js-base64-img#readme",
"dependencies": {
"fetch": "^1.1.0",
"node-fetch": "^2.6.1",
"strong-type": "^0.1.6"
},
"devDependencies": {
"c8": "^7.6.0",
"vanilla-test": "^1.4.5"
}
}