micro-notify
Version:
A simple wrapper to send micro errors to Bugsnag
47 lines (46 loc) • 1.15 kB
JSON
{
"name": "micro-notify",
"version": "1.0.0",
"description": "A simple wrapper to send micro errors to Bugsnag",
"keywords": [
"micro",
"Bugsnag"
],
"main": "lib/index.js",
"repository": "git@github.com:pauldariye/micro-notify.git",
"author": "Paul Dariye <paul.dariye@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"test": "xo --fix && jest --coverage",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepare": "yarn clean && yarn test && yarn build"
},
"xo": {
"space": true,
"ignores": ["test/*.js", "lib/*.js"],
"rules": {
"no-multi-assign": "off"
}
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"boom": "^7.2.0",
"bugsnag": "^2.4.3",
"micro": "^9.3.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3",
"cross-env": "^5.2.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"test-listen": "^1.1.0",
"xo": "^0.23.0"
}
}