-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 894 Bytes
/
package.json
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
{
"name": "rolling-file",
"version": "1.1.0",
"description": "Write to a file until limits you define are reached, after which a new file is created to and written to until its limits are reached, and so on.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"dependencies": {
"custom-error-instance": "^2.1.2",
"moment": "^2.27.0",
"object-schemata": "^1.0.10"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"random-fs": "^1.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gi60s/rolling-file.git"
},
"keywords": [
"file",
"stream",
"rolling",
"log",
"logger"
],
"author": "James Speirs",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gi60s/rolling-file/issues"
},
"homepage": "https://github.com/Gi60s/rolling-file#readme"
}