-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.79 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "error-handler-e2",
"version": "4.1.6",
"description": "This is handle error package",
"main": "./build/index.js",
"module": "./build/index.js",
"files": [
"build"
],
"types": "./build/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"test": "./node_modules/.bin/mocha -r ts-node/register test/**/*.spec.ts",
"depcheck": "./node_modules/.bin/npm-check -u",
"build": "rollup -c",
"commit": "./node_modules/.bin/git-cz",
"docs:serve": "docsify serve docs",
"husky": "husky init",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky install",
"lint": "./node_modules/.bin/eslint ./src/*/* ./test/*",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"keywords": [
"errors",
"error",
"error handler",
"expressjs",
"nodejs",
"nodejs errors",
"http status codes",
"async handler",
"async express handler"
],
"author": "Milad E. Fahmy <miladezzat> (https://github.com/miladezzat)",
"contributors": [
"Milad E. Fahmy <miladezzat> (https://github.com/miladezzat)"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"docsify-cli": "^4.4.3",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"generate-changelog": "^1.8.0",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"npm-check": "^5.9.2",
"pinst": "^2.1.6",
"rollup": "^2.67.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miladezzat/error-handler-e2.git"
},
"bugs": {
"url": "https://github.com/miladezzat/error-handler-e2/issues"
},
"homepage": "https://miladezzat.github.io/error-handler-e2"
}