UNPKG

@neylion/exceptions

Version:

Exceptions commonly used within ney projects

49 lines (48 loc) 1.31 kB
{ "name": "@neylion/exceptions", "version": "1.0.5", "description": "Exceptions commonly used within ney projects", "homepage": "https://github.com/Neylion/ney-exceptions", "repository": { "type": "git", "url": "git@github.com:Neylion/ney-exceptions" }, "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "author": "Fredrik Lindberg", "license": "ISC", "keywords": [ "exception", "error", "errorHandling" ], "scripts": { "test": "mocha -r ts-node/register test/**/*Test.ts && echo 'Running linter...' && npm run lint && echo 'Done.'", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "preversion": "npm run lint", "version": "npm run format && git add -A src", "prepublishOnly": "npm test && npm run lint" }, "devDependencies": { "@types/chai": "^4.2.11", "@types/mocha": "^7.0.2", "@types/node": "^13.13.0", "@types/stack-utils": "^1.0.1", "chai": "^4.2.0", "mocha": "^7.1.1", "prettier": "^1.19.1", "ts-node": "^8.8.2", "tslint": "^6.1.1", "tslint-config-prettier": "^1.18.0", "typescript": "^3.8.3" }, "dependencies": { "stack-utils": "^2.0.1" } }