forked from Speedup-lib/nodejs-standard-error-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "error-lib",
"version": "2.0.1",
"description": "Standard Error Library for JavaScript/TypeScript projects (NodeJS & Browsers)",
"type": "commonjs",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json",
"package-lock.json"
],
"main": "./dist/require/index.js",
"module": "./dist/import/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/require/index.js",
"import": "./dist/import/index.js"
}
},
"scripts": {
"clean": "rimraf dist/",
"build:import": "tsc -b ./tsconfig.build.import.json",
"build:require": "tsc -b ./tsconfig.build.require.json",
"build": "run-p clean build:import build:require",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DManavi/error_lib.git"
},
"keywords": [
"error",
"exception",
"errors",
"try-catch",
"stacktrace",
"error-handler",
"error-handlers",
"error-class",
"error-classes",
"error-monitoring"
],
"author": "Danial Manavi",
"license": "MIT",
"bugs": {
"url": "https://github.com/DManavi/error_lib/issues"
},
"homepage": "https://github.com/DManavi/error_lib#readme",
"devDependencies": {
"@types/jest": "27.5.2",
"jest": "28.1.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"ts-jest": "28.0.2",
"ts-node": "10.8.0",
"typescript": "4.6.4"
}
}