file-timestamp-stream
Version:
Writing stream with file rotating based on timestamp
84 lines (83 loc) • 2.78 kB
JSON
{
"name": "file-timestamp-stream",
"version": "3.0.0",
"description": "Writing stream with file rotating based on timestamp",
"type": "module",
"exports": {
".": {
"default": "./lib/file-timestamp-stream.js",
"typings": "./lib/file-timestamp-stream.d.ts"
}
},
"main": "lib/file-timestamp-stream.js",
"typings": "lib/file-timestamp-stream.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dex4er/js-file-timestamp-stream"
},
"keywords": [
"stream",
"rotate",
"timestamp"
],
"author": "Piotr Roszatycki",
"license": "MIT",
"bugs": {
"url": "https://github.com/dex4er/js-file-timestamp-stream/issues"
},
"homepage": "http://github.com/dex4er/js-file-timestamp-stream",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"timers-obj": "^3.1.0",
"ultra-strftime": "^1.0.2"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@tsconfig/node16": "^16.1.3",
"@types/chai": "^4.3.16",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/semver": "^7.5.8",
"@types/ultra-strftime": "^1.0.3",
"@typescript-eslint/parser": "^7.14.1",
"c8": "^10.1.2",
"chai": "^5.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"markdownlint-cli": "^0.41.0",
"mocha": "^10.5.2",
"mocha-steps": "^1.3.0",
"prettier": "^3.3.2",
"semver": "^7.6.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
},
"scripts": {
"compile": "tsc --pretty --project .",
"clean": "npm run clean:compile && npm run clean:coverage",
"clean:compile": "shx rm -rf lib",
"clean:coverage": "shx rm -rf coverage .nyc_output",
"lint": "npm run lint:tsc:src && npm run lint:tsc:test && npm run lint:tsc:examples && npm run lint:eslint && npm run lint:prettier && npm run lint:markdownlint",
"lint:tsc:examples": "tsc --noEmit --pretty --project examples",
"lint:tsc:src": "tsc --noEmit --pretty --project .",
"lint:tsc:test": "tsc --noEmit --pretty --project test",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --ignore-path .gitignore --list-different '**/*.{js,json,md,ts,yml}'",
"lint:markdownlint": "markdownlint \"*.md\"",
"prepack": "npm run compile",
"prepublishOnly": "npm run test",
"pretest": "npm run lint",
"test": "npm run test:spec",
"test:spec": "mocha",
"test:coverage": "npm run test:coverage:spec && npm run test:coverage:report",
"test:coverage:spec": "c8 --no-clean --reporter=lcov npm run test:spec",
"test:coverage:report": "c8 report --reporter=text-summary --color"
}
}