File size: 1,083 Bytes
23ac194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "@fastify/error",
  "version": "4.0.0",
  "description": "A small utility, used by Fastify itself, for generating consistent error objects across your codebase and plugins.",
  "main": "index.js",
  "type": "commonjs",
  "types": "types/index.d.ts",
  "scripts": {
    "lint": "standard",
    "lint:fix": "standard --fix",
    "test": "npm run test:unit && npm run test:typescript",
    "test:unit": "tap",
    "test:typescript": "tsd"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fastify/fastify-error.git"
  },
  "keywords": [
    "fastify",
    "error",
    "utility",
    "plugin"
  ],
  "author": "Tomas Della Vedova",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fastify/fastify-error/issues"
  },
  "homepage": "https://github.com/fastify/fastify-error#readme",
  "devDependencies": {
    "benchmark": "^2.1.4",
    "standard": "^17.1.0",
    "tap": "^18.7.1",
    "tsd": "^0.31.0"
  },
  "tsd": {
    "compilerOptions": {
      "esModuleInterop": true
    }
  },
  "publishConfig": {
    "access": "public"
  }
}