@oada/media-types
Version:
OADA formats media type resolution
82 lines • 1.59 kB
JSON
{
"name": "@oada/media-types",
"version": "4.0.0",
"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": "^1.1.8",
"content-type": "^1.0.5"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"ava": "6.1.2",
"c8": "^9.1.0"
}
}