prepper
Version:
Prepper is an event based api for pre-processing log events before routing them to your logging framework of choice
58 lines (57 loc) • 1.59 kB
JSON
{
"name": "prepper",
"version": "1.2.2",
"description": "Prepper is an event based api for pre-processing log events before routing them to your logging framework of choice",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"flat": "^5.0.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"ramda": "^0.27.2",
"require-all": "^3.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"async": "^2.6.1",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-imperative": "^2.1.0",
"eslint-plugin-imperative": "^2.1.0",
"express": "^4.16.3",
"husky": "^1.1.1",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"on-headers": "^1.0.1",
"request": "^2.88.0"
},
"scripts": {
"test": "NODE_ENV=test mocha",
"istanbul": "NODE_ENV=test nyc --reporter=html --reporter=text mocha",
"codeclimate": "(test -e .codeclimate && npm run istanbul && source .codeclimate && codeclimate-test-reporter < coverage/lcov.info) || echo skipping codeclimate",
"lint": "eslint .",
"precommit": "npm run lint && npm test",
"prepush": "npm run codeclimate"
},
"author": "One Beyond",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/onebeyond/prepper.git"
},
"keywords": [
"Logger",
"Event",
"Emitter",
"Decorator",
"Filter"
],
"bugs": {
"url": "https://github.com/onebeyond/prepper/issues"
},
"homepage": "https://github.com/onebeyond/prepper#readme"
}