catch-decorator-ts
Version:
Handle your exceptions elegantly
68 lines (67 loc) • 1.72 kB
JSON
{
"name": "catch-decorator-ts",
"description": "Handle your exceptions elegantly",
"author": "Velid Aljic <velid.aljic@protonmail.com>",
"license": "MIT",
"version": "0.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"build-ts": "npm run rm-dist && tsc -p tsconfig.json",
"watch-ts": "tsc -w",
"rm-dist": "ts-node ./scripts/clean-dist.js",
"test": "jest",
"format": "prettier 'src/**/*.ts' --write"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"git add ."
]
},
"dependencies": {
"tslib": "^2.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.9",
"@commitlint/config-conventional": "^10.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^14.6.0",
"@types/shelljs": "^0.8.8",
"commitlint": "^9.1.2",
"husky": "^4.2.5",
"jest": "^27.1.3",
"lint-staged": "^12.3.8",
"prettier": "^2.0.5",
"rollup": "^2.26.9",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"shelljs": "^0.8.4",
"ts-jest": "^27.1.3",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.3"
},
"homepage": "https://github.com/valjic1/catch-decorator-ts",
"repository": {
"type": "git",
"url": "https://github.com/valjic1/catch-decorator-ts.git"
},
"keywords": [
"catch",
"decorator",
"error",
"handling",
"javascript",
"typescript"
]
}