| Current Path : /etc/kibana/node_modules/bail/ |
| Current File : //etc/kibana/node_modules/bail/package.json |
{
"name": "bail",
"version": "1.0.2",
"description": "Throw a given error",
"license": "MIT",
"keywords": [
"fail",
"bail",
"throw",
"callback",
"error"
],
"files": [
"index.js"
],
"repository": "https://github.com/wooorm/bail",
"bugs": "https://github.com/wooorm/bail/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"dependencies": {},
"devDependencies": {},
"scripts": {
"build-md": "remark . -qfo",
"build-bundle": "browserify index.js --bare -s bail > bail.js",
"build-mangle": "esmangle bail.js > bail.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run build && npm run lint && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"xo": {
"space": true,
"esnext": false,
"ignores": [
"bail.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"cleaned": true
}