-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "img2teletext",
"version": "4.2.0",
"description": "PNG to Teletext graphics converter",
"main": "src/index.js",
"bin": {
"img2teletext": "./bin/img2teletext.js"
},
"scripts": {
"build": "parcel build src/index.js",
"dev": "parcel src/index.js",
"prepublish": "npm run test",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andormade/img2teletext.git"
},
"keywords": [
"teletext",
"png"
],
"author": "Andor Polgar",
"license": "MIT",
"bugs": {
"url": "https://github.com/andormade/img2teletext/issues"
},
"homepage": "https://github.com/andormade/img2teletext#readme",
"engines": {
"node": ">=8.11.2",
"npm": ">=5.6.0"
},
"devDependencies": {
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"btoa": "^1.2.1",
"commander": "^2.19.0",
"image-buffer-utils": "^1.0.0",
"jpeg-js": "^0.4.0",
"pngjs": "^3.3.3",
"teletexthash": "^0.1.0"
}
}