-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-log-rotate",
"version": "0.1.5",
"description": "",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rimraf lib/* && tsc",
"dev": "npm run build && node -r esm ./lib/index.js",
"test": "jest",
"test:coverage": "jest --no-cache --forceExit --coverage",
"tsc:init": "tsc --init",
"lint": "prettier --list-different \"{src,__tests__}/**/*.{js,ts,tsx,json}\"",
"lint:format": "prettier --write \"{src,__tests__}/**/*.{js,ts,tsx,json}\"",
"lint-staged": "lint-staged",
"release": "standard-version && git push --follow-tags && npm publish"
},
"lint-staged": {
"linters": {
"{src,__tests__}/**/*.{js,ts,tsx,json}": [
"npm run lint:format",
"git add"
]
}
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lemon-sour/node-log-rotate.git"
},
"keywords": [
"nodejs",
"logger",
"log-rotate"
],
"author": "hisasann",
"license": "MIT",
"bugs": {
"url": "https://github.com/lemon-sour/node-log-rotate/issues"
},
"homepage": "https://github.com/lemon-sour/node-log-rotate#readme",
"dependencies": {
"lint-staged": "^10.2.2",
"lodash": "^4.17.15",
"moment": "^2.25.3"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/moment": "^2.13.0",
"@types/node": "^13.13.4",
"esm": "^3.2.25",
"jest": "^26.0.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^7.1.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}