-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.07 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
{
"name": "@catdad/to-bmp",
"version": "1.1.0",
"description": "to-bmp",
"main": "index.js",
"bin": "bin.js",
"scripts": {
"test": "mocha --slow 0 test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad-experiments/to-bmp.git"
},
"author": "Kiril Vatev <vatev.1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catdad-experiments/to-bmp/issues"
},
"homepage": "https://github.com/catdad-experiments/to-bmp#readme",
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"index.js",
"bin.js",
"lib"
],
"devDependencies": {
"chai": "^4.2.0",
"end-of-stream": "^1.4.4",
"eslint": "^5.16.0",
"is-bmp": "^1.0.1",
"mocha": "^8.1.3",
"safe-await": "^1.0.0"
},
"keywords": [
"buffer",
"convert",
"fast",
"jpg",
"png",
"bmp",
"encode",
"encoder",
"electron",
"splash",
"nsis"
],
"dependencies": {
"jpeg-js": "^0.4.2",
"node-fetch": "^2.6.1",
"pngjs": "^5.0.0"
}
}