-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "project-error",
"description": "Customized error class module for projects/microservices. Throw error objects within a JavaScript Error class while preserving the stack.",
"version": "2.0.3",
"homepage": "https://www.npmjs.com/package/project-error",
"author": {
"name": "Sudharshan Ravindran",
"email": "[email protected]",
"url": "https://suddi.io"
},
"repository": {
"type": "git",
"url": "https://github.com/suddi/project-error"
},
"bugs": {
"url": "https://github.com/suddi/project-errors/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"custom-error",
"personalized",
"project-error"
],
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"scripts": {
"coverage": "nyc mocha",
"security-check": "npm audit --audit-level high || true",
"test": "npm run security-check && npm run coverage"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.0.0",
"error-stack-parser": "^2.0.0",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nyc": "^15.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}