-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
140 lines (140 loc) · 3.3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "ololog",
"version": "1.1.175",
"description": "Logging. Colors. Terminals & browsers. Show call locations. Pretty prints objects, Errors, anything!",
"main": "build/ololog.js",
"unpkg": "build/ololog.browser.js",
"types": "./ololog.d.ts",
"scripts": {
"lint": "eslint ololog.js",
"lint-test": "eslint test.js",
"build": "npm run lint && npm run lint-test && npm run babel && npm run browserify",
"test": "npm run build && env OLOLOG_TEST_FILE='./build/ololog' nyc --reporter=html --reporter=text mocha --reporter spec",
"test-no-coverage": "npm run build && env OLOLOG_TEST_FILE='./build/ololog' mocha --reporter spec",
"autotest": "env OLOLOG_TEST_FILE='./ololog' mocha --reporter spec --watch",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"babel": "babel ololog.js --source-maps inline --out-file ./build/ololog.js",
"browserify": "browserify --debug ./ololog.browser.js > ./build/ololog.browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/xpl/ololog.git"
},
"keywords": [
"logging",
"log",
"print",
"pretty",
"pretty print",
"chrome devtools",
"devtools",
"debugger",
"debug",
"debugging tool",
"console log",
"console.log",
"tty",
"ANSI",
"code",
"codes",
"color",
"colors",
"text",
"command line",
"sequence",
"control",
"formatting",
"print object",
"format object",
"object printer",
"stringify",
"cli",
"shell",
"escape",
"escapes",
"red",
"green",
"blue",
"cyan",
"magenta",
"yellow",
"dim",
"bright",
"background",
"color logging",
"colored logging",
"colored log",
"log with colors",
"log colors",
"color helper",
"colorize",
"color output",
"ansi color",
"ansi-color",
"ansicolor",
"ansi coloring",
"colored strings",
"terminal colors",
"ansi styles",
"ansi for web",
"web ansi",
"css ansi",
"terminal colors emulation",
"console",
"console colors",
"ansi console",
"logging",
"log",
"chrome",
"chrome devtools",
"web inspector",
"console.log",
"developer tools",
"devtools",
"tty colors",
"tty",
"rainbow",
"stack",
"stacktrace",
"callstack",
"call stack",
"error",
"stack",
"call stack printing",
"stack printing",
"print stack",
"print callstack",
"print stacktrace",
"print stack trace",
"error stack print",
"Error.stack print",
"stack printer",
"error printer"
],
"author": "Vitaly Gordon <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/xpl/ololog/issues"
},
"homepage": "https://github.com/xpl/ololog",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2017-object-entries": "0.0.4",
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.3",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"dependencies": {
"ansicolor": "^1.1.84",
"pipez": "^1.1.12",
"printable-characters": "^1.0.42",
"stacktracey": "^2.1.6",
"string.bullet": "^1.0.12",
"string.ify": "^1.0.64"
}
}