You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.5 KiB

{
"name": "rotating-file-stream",
"version": "1.4.6",
"description": "Opens a stream.Writable to a file rotated by interval and/or size. A logrotate alternative.",
"scripts": {
"all": "npm run npmignore && npm run eslint && npm run coverage && npm run ts",
"coverage": "TZ=\"Europe/Rome\" ./node_modules/.bin/nyc -r lcov -r text -r text-summary npm test",
"debug": "node --inspect-brk ./node_modules/.bin/_mocha test",
"eslint": "./node_modules/.bin/eslint *.js test/*js",
"npmignore": "echo '.codeclimate.yml\\n.eslintrc\\n.gitignore\\n.gitattributes\\n.travis.yml\\n.vscode\\nCHANGELOG.md\\nREADME.md\\ntest' > .npmignore ; cat .gitignore >> .npmignore",
"test": "TZ=\"Europe/Rome\" ./node_modules/.bin/_mocha test",
"ts": "node_modules/.bin/tsc index.d.ts --lib es6"
},
"bugs": "https://github.com/iccicci/rotating-file-stream/issues",
"repository": "https://github.com/iccicci/rotating-file-stream",
"keywords": [
"log",
"rotate",
"logrotate"
],
"engines": {
"node": ">=6.0"
},
"author": "Daniele Ricci <daniele.icc@gmail.com> (https://github.com/iccicci)",
"contributors": [
"cicci (https://www.trinityteam.it/DanieleRicci#en)",
"allevo",
"rakshith-ravi",
"kbirger",
"Jorge Silva <jorgemsrs@gmail.com>",
"Jan Christoph Bernack <jc.bernack@gmail.com>",
"cchare (https://github.com/cchare)"
],
"license": "MIT",
"readmeFilename": "README.md",
"types": "index.d.ts",
"devDependencies": {
"eslint": "6.5.1",
"mocha": "6.2.2",
"nyc": "14.1.1",
"typescript": "3.6.4",
"@types/node": "12.11.1"
}
}