-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "snazzy",
"description": "Format JavaScript Standard Style as Stylish (i.e. snazzy) output",
"version": "9.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"bin": {
"snazzy": "./bin/cmd.js"
},
"bugs": {
"url": "https://github.com/feross/snazzy/issues"
},
"dependencies": {
"chalk": "^4.1.0",
"inherits": "^2.0.4",
"minimist": "^1.2.5",
"readable-stream": "^3.6.0",
"standard-json": "^1.1.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"standard": "*"
},
"homepage": "https://github.com/feross/snazzy",
"keywords": [
"pretty",
"pretty output",
"snazzy standard",
"standard",
"standard pretty",
"stylish",
"stylish for standard",
"stylish formatter",
"stylish reporter",
"stylish standard"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/snazzy.git"
},
"scripts": {
"test": "standard --verbose | ./bin/cmd.js"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}