packages/flamingo-sentry/package.json
{
"name": "flamingo-sentry",
"version": "4.0.0",
"main": "index.js",
"description": "flamingo-sentry is a https://github.com/piobyte/flamingo addon to adds a bunyan log stream for sentry integration.",
"scripts": {
"lint": "eslint index.ts test/**/*.ts",
"build": "tsc",
"prettier": "prettier --write index.ts \"test/**/*.ts\"",
"pretest": "yarn lint && yarn build",
"test": "TEST=true yarn cover",
"precover": "rm -r coverage 2>/dev/null || true",
"cover": "nyc mocha",
"docs": "node node_modules/jsdoc/jsdoc.js index.js -r -u tutorials -t ./node_modules/postman-jsdoc-theme -P package.json -R README.md -d docs",
"prepublishOnly": "yarn test && yarn build",
"preversion": "yarn test"
},
"author": "Christian",
"license": "MIT",
"engines": {
"node": ">=14"
},
"keywords": [
"flamingo-addon"
],
"bugs": {
"url": "https://github.com/piobyte/flamingo-sentry/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/piobyte/flamingo-sentry"
},
"dependencies": {
"bunyan": "^1.8.15",
"flamingo": "^4.0.0",
"lodash.some": "^4.6.0",
"nyc": "^15.1.0",
"raven": "^2.6.0"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"got": "^11.8.2",
"mocha": "^8.3.2",
"mockery": "^2.1.0",
"typescript": "^4.2.4"
}
}