-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
92 lines (92 loc) · 2.24 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "image-to-ascii",
"version": "3.2.1",
"description": "A Node.JS module that converts images to ASCII art.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"test": "node example/index.js"
},
"repository": {
"type": "git",
"url": "http://github.com/IonicaBizau/image-to-ascii.git"
},
"keywords": [
"ascii",
"image",
"png",
"node"
],
"author": "Ionică Bizău <[email protected]> (https://ionicabizau.net)",
"contributors": [
"Eric Baer <[email protected]>",
"ComFreek <[email protected]>",
"Szabo Cristian",
"Aleen <[email protected]>",
"in-ch <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/IonicaBizau/image-to-ascii/issues"
},
"homepage": "https://github.com/IonicaBizau/image-to-ascii",
"blah": {
"h_img": "http://i.imgur.com/pKydY5P.png",
"ex_img": "http://i.imgur.com/Om8G7dZ.png",
"installation": "Check out the [INSTALLATION.md](INSTALLATION.md) guide for more information.",
"example": [
{
"p": "In order to run the `webcam.sh` provided in the `example` folder, you will also need streamer. The script uses streamer to make webcam pictures and converts them into ASCII art using the `webcam.js`"
},
{
"code": {
"language": "sh",
"content": [
"# Ubuntu",
"$ sudo apt-get install streamer",
"",
"# CentOS / RHEL",
"$ sudo yum install --enablerepo epel GraphicsMagick"
]
}
},
{
"p": "To run the script just use:"
},
{
"code": {
"language": "sh",
"content": "sh webcam.sh"
}
}
],
"cli": "image-to-ascii-cli"
},
"dependencies": {
"asciify-pixel-matrix": "^1.0.14",
"compute-size": "^1.0.13",
"image-parser": "^1.2.8",
"imgpx": "^1.0.13",
"one-by-one": "^3.2.8",
"terminal-char-width": "^1.0.10",
"ul": "^5.2.15"
},
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"bloggify.js",
"bloggify.json",
"bloggify/"
]
}