{ "name": "log-chopper", "description": "truncates a log file", "version": "1.0.2", "author": "Philipe Navarro @rasphilco", "bugs": "https://github.com/rasphilco/log-chopper/issues", "dependencies": { "byline": "5.x" }, "devDependencies": { "babel-cli": "6.24.1", "babel-core": "^6.25.0", "babel-eslint": "7.2.3", "babel-jest": "20.0.3", "babel-plugin-transform-async-to-generator": "^6.24.1", "babel-plugin-transform-class-properties": "6.24.1", "babel-plugin-transform-es2015-modules-commonjs": "6.24.1", "babel-plugin-transform-flow-strip-types": "6.22.0", "flow-bin": "^0.49.1", "flow-copy-source": "^1.2.0", "flow-typed": "2.1.2", "fs-extra": "3.0.1", "jest": "20.0.4", "jsdoc-babel": "0.3.0", "jsdoc-to-markdown": "3.0.0", "nock": "9.0.13", "rimraf": "^2.6.1", "standard": "10.0.2", "tmp": "0.0.31" }, "files": [ "lib" ], "engines": { "node": ">=6.0.0" }, "homepage": "https://github.com/rasphilco/log-chopper", "jest": { "testEnvironment": "node", "coverageDirectory": "./coverage/", "collectCoverage": true }, "keywords": [ "log", "truncate", "truncator" ], "license": "ISC", "main": "lib/chopper.js", "repository": "rasphilco/log-chopper", "scripts": { "build": "babel src -d lib --ignore '*.test.js'", "clean": "rimraf lib", "copy-flow": "flow-copy-source -v -i '*.test.js' src lib", "prepare": "npm run clean && npm run build && npm run copy-flow", "test": "jest && flow && standard", "watch": "babel --watch src -d lib --ignore '*.test.js'" }, "standard": { "parser": "babel-eslint", "env": [ "jest" ], "globals": [], "ignore": [ "flow-typed" ] } }