forked from danielb2/purdy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "purdy",
"version": "3.0.2",
"description": "Pretty print objects in real purdy colors. Allows clearer visualization of objects than you get from most pretty printers due to colors. It will also print out the complete path to an object, something that's extremly useful for debugging. Purdy will also print out the path to access a variable using Hoek format making it useful on accessing values.",
"main": "lib/index.js",
"scripts": {
"test": "lab -a code -t 100 -v -I Reflect -L"
},
"homepage": "https://github.com/danielb2/purdy.js",
"bugs": "https://github.com/danielb2/purdy.js/issues",
"repository": {
"type": "git",
"url": "https://github.com/danielb2/purdy.js.git"
},
"author": "Daniel Bretoi",
"keywords": [
"ansi",
"terminal",
"colors",
"pretty",
"print",
"color"
],
"license": "MIT",
"bin": {
"purdy": "bin/purdy.js"
},
"devDependencies": {
"code": "1.x.x",
"lab": "6.x.x"
},
"dependencies": {
"bossy": "^3.0.4",
"chalk": "0.4.x",
"hoek": "2.x.x",
"joi": "6.x.x"
}
}