@speedup/error
Version:
SpeedUP standard error library
62 lines (61 loc) • 1.37 kB
JSON
{
"name": "@speedup/error",
"version": "1.0.8",
"description": "SpeedUP standard error library",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"rebuild": "run-s clean build",
"test": "mocha --require ts-node/register test/index.ts",
"coverage": "nyc npm run test",
"prepublish": "run-s rebuild test coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpeedUp-io/nodejs-standard-error-lib.git"
},
"keywords": [
"speedup",
"error",
"http-error",
"exception"
],
"types": "dist/index.d.ts",
"author": "SpeedUP",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpeedUp-io/nodejs-standard-error-lib/issues"
},
"homepage": "https://github.com/SpeedUp-io/nodejs-standard-error-lib#readme",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage/**/*",
"dist/**/*",
"test/**/*",
"**/*.d.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
}
}