-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "@stgdp/fancy-logger",
"version": "1.0.0",
"description": "",
"license": "MIT",
"homepage": "https://github.com/stgdp/fancy-logger",
"author": "Andrew Palfrey (https://github.com/apalfrey)",
"repository": {
"type": "git",
"url": "https://github.com/stgdp/fancy-logger.git"
},
"bugs": {
"url": "https://github.com/stgdp/fancy-logger/issues"
},
"main": "index.js",
"scripts": {
"lint": "eslint **/*.js",
"publish": "npm publish --access public",
"test": "mocha"
},
"keywords": [
"console",
"log",
"logger",
"logging",
"modifiers",
"decoration"
],
"files": [
"CHANGELOG.md",
"index.js",
"package.json",
"README.md"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"@stgdp/ansi-codes": "1.0.0",
"fecha": "^4.2.3",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-xo": "^0.41.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^42.0.0",
"mocha": "^10.0.0"
}
}