-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.2 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
{
"name": "node-base64-img",
"version": "2.0.0",
"description": "A base64-image converter and vice-versa",
"main": "dist/source",
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "tsc --build --clean && tsc",
"test": "tsc --noEmit && ava",
"postbuild": "copyfiles -u 1 test/*.txt test/*.jpg dist/test",
"build": "tsc --build --clean && tsc",
"prepare": "npm run build"
},
"author": "Govind S",
"license": "MIT",
"homepage": "https://github.com/dopecodez/base64-image#readme",
"repository": {
"type": "git",
"url": "git://github.com/dopecodez/base64-image.git"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.7",
"ava": "^3.15.0",
"copyfiles": "^2.2.0",
"typescript": "^3.8.3"
},
"files": [
"dist/source"
],
"types": "dist/source/",
"ava": {
"files": [
"test/*"
],
"timeout": "1m",
"typescript": {
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"keywords": [
"base64",
"base64-img",
"base64-image",
"base64-converter",
"image-base64"
]
}