-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "image2uri",
"version": "2.1.2",
"description": "Convert image file to data URI.",
"homepage": "https://jaywcjlove.github.io/image2uri/",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"license": "MIT",
"author": "Kenny <[email protected]>",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"scripts": {
"prepare": "npm run build",
"watch": "tsbb watch",
"build": "tsbb build",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/image2uri"
},
"files": [
"lib",
"src"
],
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
],
"coverageReporters": [
"lcov",
"json-summary"
]
},
"keywords": [
"image",
"uri",
"fs",
"base64",
"image-to-uri",
"image2uri"
],
"dependencies": {
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"tsbb": "^4.1.14"
}
}