-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 983 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 983 Bytes
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
{
"name": "@monksoftware/monlog",
"version": "4.1.1",
"private": false,
"engines": {
"node": ">=8.3.0"
},
"description": "Simple, sensible logging in one line.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --colors"
},
"files": [
"lib/",
"index.d.ts"
],
"keywords": [
"log",
"logging",
"loglevel"
],
"author": "MONK Software",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"loglevel": "^1.7.1",
"loglevel-plugin-prefix": "^0.8.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.4.0"
},
"repository": {
"type": "git",
"url": "git@git.webmonks.org:node-libraries/monk-log.git"
}
}