-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 935 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 935 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
{
"name": "simple-node-logger",
"version": "21.8.12",
"description": "A node console and file logger suitable for small, medium and large production projects.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/darrylwest/simple-node-logger.git"
},
"scripts": {
"test": "make test"
},
"keywords": [
"log",
"logger",
"multi-appender",
"file logger",
"rolling file logger",
"console logger"
],
"dependencies": {
"lodash": "^4.17.12",
"moment": "^2.20.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.0.1",
"mocha": "^9.0.3",
"random-fixture-data": "^2.0.17"
},
"files": [
"index.js",
"lib/",
"test/mocks",
"index.d.ts"
],
"author": "darryl.west@raincitysoftware.com",
"license": "Apache-2.0",
"homepage": "https://github.com/darrylwest/simple-node-logger",
"typings": "./index.d.ts"
}