-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "node-rotation-file",
"version": "1.1.2",
"description": "Make a rotation file by time or size",
"main": "src/index.js",
"author": "JuMastro <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/JuMastro/node-rotation-file#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JuMastro/node-rotation-file.git"
},
"bugs": {
"url": "https://github.com/JuMastro/node-rotation-file/issues"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --config ./config/jest/jest.config.js",
"precoverage": "npm run lint",
"coverage": "jest --config ./config/jest/jest.config.js --coverage"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.1.1"
},
"keywords": [
"rotation",
"file",
"stream",
"logs"
],
"publishConfig": {
"access": "public"
},
"files": [
"src"
]
}