dont-throw
Version:
Don't throw utilities
42 lines (41 loc) • 1.08 kB
JSON
{
"name": "dont-throw",
"version": "0.0.2",
"description": "Don't throw utilities",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"format": "npx prettier --write '**/*.ts'",
"clean": "rm -rf dist",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"test": "node -r ts-node/register src/*.test.ts",
"test:clean": "npm run clean && npm run test",
"prepublishOnly": "npm run test:clean && npm run build:clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thekhanj/dont-throw.git"
},
"author": "Pooyan Khanjankhani <pooyankhan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thekhanj/dont-throw/issues"
},
"keywords": [
"trycatch",
"dont-throw"
],
"files": [
"dist/*.d.ts",
"dist/*.js",
"dist/adapters/*.d.ts",
"dist/adapters/*.js"
],
"homepage": "https://github.com/thekhanj/dont-throw#readme",
"devDependencies": {
"@types/node": "^20.12.7",
"prettier": "^3.2.5",
"ts-node": "^10.9.2"
}
}