-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "node-base64-image",
"version": "2.0.7",
"description": "Download images from remote URLs and encode/decode them to base64",
"main": "dist/index.js",
"types": "index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"version": "auto-changelog -p && git add CHANGELOG.md",
"test": "jest --coverage",
"lint": "eslint . --ext .ts",
"build": "tsc --build"
},
"repository": {
"type": "git",
"url": "https://github.com/riyadhalnur/node-base64-image.git"
},
"keywords": [
"image",
"download",
"base64",
"encode",
"decode",
"javascript",
"node",
"nodejs",
"js",
"buffer"
],
"author": "Riyadh Al Nur <[email protected]> (https://verticalaxisbd.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riyadhalnur/node-base64-image/issues"
},
"homepage": "https://riyadhalnur.github.io/node-base64-image/",
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"auto-changelog": "^2.4.0",
"eslint": "8.38.0",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"dependencies": {
"axios": "^1.7.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
}
}