-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 934 Bytes
/
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
{
"name": "console-png",
"version": "1.2.1",
"description": "Print PNG images to terminal output",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"png.js": "^0.1.1",
"ansi-256-colors": "^1.1.0"
},
"standard": {
"ignore": []
},
"devDependencies": {
"mocha": "^2.3.3",
"standard": "^5.3.1"
},
"scripts": {
"test": "mocha",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aantthony/console-png.git"
},
"author": "Anthony Foster",
"license": "MIT",
"bugs": {
"url": "https://github.com/aantthony/console-png/issues"
},
"homepage": "https://github.com/aantthony/console-png#readme",
"keywords": [
"console",
"png",
"terminal",
"ansi",
"xterm",
"256",
"colors"
],
"bin": {
"console-png": "./bin/index.js"
}
}