UNPKG

node-log-rotate

Version:

:lipstick: node-log-rotate :lipstick: ===============

69 lines (68 loc) 1.73 kB
{ "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" } }