-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "@inveris/dev-logger",
"version": "2.0.9",
"description": "A console logger for development purpose with human readable output and easy modifiability.",
"author": "Peter Rottmann <rottmann@inveris.de>",
"license": "MIT",
"homepage": "https://github.com/inverisOSS/dev-logger",
"repository": {
"type": "git",
"url": "https://github.com/inverisOSS/dev-logger.git"
},
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"scripts": {
"coverage": "nyc npm run test",
"lint": "eslint examples lib test",
"test": "npm run lint && SILENT=true mocha --timeout 10000 --bail --exit --recursive test/**/*_test.js",
"test:watch": "nodemon -w lib -w test -e js --exec 'mocha --timeout 10000 --bail'"
},
"keywords": [
"console",
"debug",
"dev",
"development",
"log",
"logger",
"logging",
"loglevel",
"output"
],
"dependencies": {
"chalk": "^4.1.2",
"safe-stable-stringify": "^2.3.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"strip-ansi": "^6.0.1"
}
}