-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.69 KB
/
package.json
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": "error-message-utils",
"version": "1.1.2",
"description": "The error-message-utils package simplifies error management in your web applications and RESTful APIs. It ensures consistent and scalable handling of error messages, saving you time and effort. Moreover, it gives you the ability to assign custom error codes so all possible cases can be handled accordingly.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"start": "ts-lib-builder --tsconfig=tsconfig.build.json",
"test": "echo \"Error: tests are executed with npm run test:(integration|unit)\" && exit 1",
"test:integration": "jest --config=jest.test-integration.config.json --no-cache",
"test:unit": "jest --config=jest.test-unit.config.json --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesusgraterol/error-message-utils.git"
},
"keywords": [
"error",
"error-management",
"encoder",
"decoder",
"error-encoder",
"error-decoder",
"utils",
"utilities",
"error-utils",
"error-utilities",
"stderr",
"standard-error",
"error-handling"
],
"author": "Jesus Graterol",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesusgraterol/error-message-utils/issues"
},
"homepage": "https://github.com/jesusgraterol/error-message-utils#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-lib-builder": "^1.0.5",
"typescript": "^5.7.2"
}
}