package.json
987 字节
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
{
"name": "cardinal",
"version": "1.0.0",
"description": "Syntax highlights JavaScript code with ANSI colors to be printed to the terminal.",
"main": "cardinal.js",
"scripts": {
"test": "tap ./test/*.js",
"demo": "node examples/highlight-string.js; node examples/highlight-self; node examples/highlight-self-hide-semicolons;"
},
"bin": {
"cdl": "./bin/cdl.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/cardinal.git"
},
"keywords": [
"syntax",
"highlight",
"theme",
"javascript",
"json",
"terminal",
"console",
"print",
"output"
],
"author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
"license": "MIT",
"dependencies": {
"ansicolors": "~0.2.1",
"redeyed": "~1.0.0"
},
"devDependencies": {
"tap": "~0.3.1",
"readdirp": "~0.2.1"
},
"_from": "cardinal@1.0.0",
"_resolved": "http://registry.npm.taobao.org/cardinal/download/cardinal-1.0.0.tgz"
}