{
  "name": "@oada/media-types",
  "version": "4.1.1",
  "description": "OADA formats media type resolution",
  "keywords": [
    "oada",
    "trellis",
    "JSON Schema",
    "schema"
  ],
  "author": "Alex Layton <alex@layton.in>",
  "homepage": "https://github.com/OADA/formats/packages/media-types",
  "repository": {
    "type": "git",
    "url": "https://github.com/OADA/formats.git",
    "directory": "packages/media-types"
  },
  "bugs": {
    "url": "https://github.com/OADA/formats/labels/@oada/media-types"
  },
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "directories": {
    "lib": "dist"
  },
  "files": [
    "src",
    "dist",
    "tsconfig.json"
  ],
  "scripts": {
    "build": "yarn g:tsc",
    "clean": "yarn g:tsc --clean",
    "prepare": "npm run build",
    "test": "c8 ava",
    "test:debug": "ava -T 60m -svc 1 --no-worker-threads"
  },
  "publishConfig": {
    "access": "public"
  },
  "ava": {
    "failFast": false,
    "files": [
      "**/*.spec.ts"
    ],
    "typescript": {
      "extensions": [
        "ts",
        "cts",
        "mts"
      ],
      "rewritePaths": {
        "src/": "dist/",
        "test/": ".test/"
      },
      "compile": false
    }
  },
  "c8": {
    "reporter": [
      "text",
      "lcov"
    ],
    "all": true,
    "src": "src",
    "exclude": [
      "*.d.ts",
      ".pnp.*",
      ".test"
    ]
  },
  "dependencies": {
    "@types/content-type": "^2.0.0",
    "content-type": "^2.0.0"
  },
  "devDependencies": {
    "@ava/typescript": "^7.0.0",
    "ava": "^8.0.1",
    "c8": "^11.0.0"
  }
}