-
Notifications
You must be signed in to change notification settings - Fork 290
/
package.json
87 lines (87 loc) · 1.96 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
{
"name": "ascii-art",
"homepage": "https://github.com/khrome/ascii-art",
"version": "2.8.5",
"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.4.1",
"ascii-art-font": "1.0.2",
"ascii-art-graph": "0.5.0",
"ascii-art-image": "1.4.0",
"ascii-art-table": "1.0.1",
"ascii-art-utf": "0.0.1",
"dirname-shim": "1.0.0",
"strangler": "^1.1.2"
},
"devDependencies": {
"ascii-art-docs": "^0.0.1",
"async-arrays": "^1.0.1",
"chai": "^4.2.0",
"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",
"should": "*"
},
"optionalDependencies": {
"canvas": "^2.6.0",
"jsftp": "2.1.3"
},
"engines": {
"node": "*"
},
"bin": "./bin/ascii-art",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"chalk-test": "./node_modules/mocha/bin/mocha test/extras/kaolin-test.js",
"browser-test": "./node_modules/karma/bin/karma start",
"test-data": "node generate.js save",
"dev-link": "npx module-auto-link -c 'npm-auto-link'",
"sample": "node generate.js"
}
}