-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 KB
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
{
"name": "consolate",
"title": "consolate",
"description": "Create an unlimited number of intuitive log functions that Consolate adds to the Node.JS console object—even override built-in functions (error, info, warn, etc.) And while you're at it, feel free to easily define colors and prefixes.",
"version": "0.2.9",
"author": "Ryan Howard @rollercodester",
"homepage": "https://github.com/rollercodester/consolate",
"bugs": "https://github.com/rollercodester/consolate/issues",
"keywords": [
"ansi",
"terminal",
"colors",
"console",
"console.log",
"console.error",
"console.info",
"console.warn",
"cli-spinners",
"spinners",
"animation",
"progress indicator"
],
"repository": {
"type": "git",
"url": "https://github.com/rollercodester/consolate.git"
},
"maintainers": [
"Ryan Howard (https://github.com/rollercodester)"
],
"contributors": [
"Ryan Howard (https://github.com/rollercodester)"
],
"license": "MIT",
"main": "lib",
"files": [
"lib",
"examples"
],
"scripts": {
"docs": "jsdoc2md -d 1 -t doc/readme.hbs lib/index.js > README.md",
"example1": "node ./examples/1-simple-custom-method.js",
"example2": "node ./examples/2-console-overrides-on-built-in-methods.js",
"example3": "node ./examples/3-animated-and-static-bullets.js",
"example4": "node ./examples/4-smart-log-argument-handling.js",
"example5": "node ./examples/5-apollo-11.js",
"example6": "node ./examples/6-cicd-pipeline.js",
"prepublish": "npm run test && npm run docs",
"test": "mocha"
},
"dependencies": {
"cli-spinners": "^1.0.0",
"js-yaml": "^3.8.2"
},
"devDependencies": {
"jsdoc-to-markdown": "^3.0.0",
"mocha": "*"
},
"engineStrict": true,
"engines": {
"node": ">=6.4.0"
}
}