-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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": "ts-strict-error",
"version": "1.0.0",
"description": "Descriptive and unpackable errors for easier error handling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint",
"test": "jest"
},
"keywords": [
"typescript"
],
"author": "Martijn Arts",
"repository": {
"type": "git",
"url": "git+https://github.com/martijnarts/ts-strict-error.git"
},
"license": "MIT",
"dependencies": {
"ts-custom-error": "^3.3.1",
"ts-pattern": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"babel-jest": "^29.5.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-progress": "^0.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.5.0",
"ts-essentials": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}