forked from khrome/ascii-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.92 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
{
"name": "ascii-art",
"homepage": "https://github.com/khrome/ascii-art",
"version": "2.5.0",
"main": "art.js",
"description": "Ansi codes, figlet fonts, and ascii art. 100% JS",
"keywords": [
"ascii",
"figlet",
"ansi",
"terminal",
"text",
"command-line",
"logging",
"log",
"xterm",
"shell",
"256",
"rgb",
"formatting",
"tty",
"styles",
"style",
"str",
"string",
"cli",
"console",
"terminal",
"table",
"compositing",
"colors",
"colour",
"color",
"chalk"
],
"author": "Abbey Hawk Sparrow <@khrome> (http://patternweaver.com)",
"contributors": [],
"bugs": {
"url": "https://github.com/khrome/ascii-art/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/khrome/ascii-art.git"
},
"dependencies": {
"ascii-art-ansi": "1.3.3",
"ascii-art-font": "1.0.2",
"ascii-art-graph": "0.1.1",
"ascii-art-image": "1.2.2",
"ascii-art-table": "1.0.1",
"ascii-art-utf": "0.0.1",
"browser-request": "0.3.3",
"canvas": "1.6.9",
"dirname-shim": "1.0.0",
"request": "^2.88.0",
"strangler": "^1.1.2",
"yargs": "*"
},
"devDependencies": {
"chai": "^4.2.0",
"async-arrays": "^1.0.1",
"color-difference": "^0.3.4",
"karma": "1.3.0",
"karma-chrome-launcher": "*",
"karma-mocha": "1.2.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-requirejs": "1.1.0",
"karma-should": "1.0.0",
"mocha": "*",
"requirejs": "2.3.2",
"ascii-art-docs": "^0.0.1",
"should": "*"
},
"optionalDependencies": {
"canvas": "^2.6.0",
"jsftp": "2.1.3"
},
"engines": {
"node": "*"
},
"bin": "./bin/ascii-art",
"scripts": {
"test": "mocha",
"chalk-test": "mocha test/extras/kaolin-test.js",
"browser-test": "karma start",
"test-data": "node generate.js save",
"sample": "node generate.js"
}
}