-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 909 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 909 Bytes
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
{
"name": "@loke/errors",
"version": "0.6.0",
"description": "Custom error types for Node.js that include additional metadata for purposes of documentation and metrics",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "rm -rf ./dist && npm run build",
"pretest": "npm run build",
"test": "ava -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LOKE/errors.git"
},
"author": "LOKE",
"license": "MIT",
"bugs": {
"url": "https://github.com/LOKE/errors/issues"
},
"homepage": "https://github.com/LOKE/errors#readme",
"dependencies": {
"ulid": "^2.3.0"
},
"peerDependencies": {
"prom-client": ">=11 <=15"
},
"devDependencies": {
"@types/node": "^20.16.5",
"ava": "^6.1.3",
"prom-client": "^15.1.3",
"typescript": "^5.6.2"
}
}