123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "name": "streamroller",
- "version": "3.0.2",
- "description": "file streams that roll over when size limits, or dates are reached",
- "main": "lib/index.js",
- "files": [
- "lib"
- ],
- "directories": {
- "test": "test"
- },
- "scripts": {
- "codecheck": "eslint \"lib/*.js\" \"test/*.js\"",
- "prepublishOnly": "npm test",
- "pretest": "npm run codecheck",
- "clean": "rm -rf node_modules/",
- "test": "nyc --check-coverage mocha",
- "html-report": "nyc report --reporter=html"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/nomiddlename/streamroller.git"
- },
- "keywords": [
- "stream",
- "rolling"
- ],
- "author": "Gareth Jones <gareth.nomiddlename@gmail.com>, Huang Yichao <ihuangyichao@outlook.com>",
- "license": "MIT",
- "readmeFilename": "README.md",
- "gitHead": "ece35d7d86c87c04ff09e8604accae81cf36a0ce",
- "devDependencies": {
- "@commitlint/cli": "^16.0.2",
- "@commitlint/config-conventional": "^16.0.0",
- "@types/node": "^17.0.9",
- "eslint": "^8.7.0",
- "husky": "^7.0.4",
- "mocha": "^9.1.4",
- "nyc": "^15.1.0",
- "proxyquire": "^2.1.1",
- "should": "^13.2.3"
- },
- "dependencies": {
- "date-format": "^4.0.3",
- "debug": "^4.1.1",
- "fs-extra": "^10.0.0"
- },
- "engines": {
- "node": ">=8.0"
- },
- "commitlint": {
- "extends": [
- "@commitlint/config-conventional"
- ]
- },
- "eslintConfig": {
- "env": {
- "browser": false,
- "node": true,
- "es6": true,
- "mocha": true
- },
- "parserOptions": {
- "ecmaVersion": 8
- },
- "extends": "eslint:recommended",
- "rules": {
- "no-console": "off"
- }
- },
- "husky": {
- "hooks": {
- "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
- }
- },
- "nyc": {
- "include": [
- "lib/**"
- ],
- "branches": 100,
- "lines": 100,
- "functions": 98
- }
- }
|