error-list
Version:
47 lines (46 loc) • 1.03 kB
JSON
{
"name": "error-list",
"description": "Error list",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/vruden/node-errors.git"
},
"bugs": {
"url": "https://github.com/vruden/node-errors/issues"
},
"homepage": "https://github.com/vruden/node-errors",
"author": {
"name": "Vladimir Rudenko",
"email": "ruden.v.a@gmail.com"
},
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=8.5.0",
"npm": ">=5.3.0"
},
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && npm run build-ts && npm run tslint",
"clean": "rm -rf lib",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "mocha test"
},
"dependencies": {
},
"devDependencies": {
"@types/node": "^8.0.29",
"tslint": "^6.1.3",
"typescript": "^5.0.4"
},
"keywords": [
"node",
"error",
"error handler",
"exception"
]
}