-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1003 Bytes
/
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
{
"name": "erroz",
"version": "2.0.0",
"description": "Create abstract errors with meta-data, stack-traces and speaking error-messages",
"main": "dist/erroz.umd.js",
"module": "dist/erroz.mjs",
"files": [
"dist"
],
"directories": {
"example": "examples"
},
"scripts": {
"build": "vite build",
"prepublishOnly": "vite build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/peerigon/erroz.git"
},
"keywords": [
"error",
"stack",
"abstract",
"api",
"http"
],
"author": "peerigon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerigon/erroz/issues"
},
"homepage": "https://github.com/peerigon/erroz",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.10"
}
}