1
Fork 0
migration-helper/package.json

66 lines
1.3 KiB
JSON

{
"name": "@holllo/migration-helper",
"description": "Tiny helper library for migrating data.",
"license": "AGPL-3.0-or-later",
"version": "0.1.3",
"author": "Holllo <helllo@holllo.org>",
"repository": {
"type": "git",
"url": "https://git.bauke.xyz/Holllo/migration-helper"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm test && pnpm build",
"test": "xo && c8 ava && tsc --noEmit"
},
"devDependencies": {
"ava": "^4.3.3",
"c8": "^7.12.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"xo": "^0.52.3"
},
"type": "module",
"main": "build/source/migration-helper.js",
"types": "build/source/migration-helper.d.ts",
"files": [
"build/source/",
"package.json",
"LICENSE",
"README.md"
],
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"tests/**/*.ts"
],
"nodeArguments": [
"--loader=ts-node/esm",
"--no-warnings"
]
},
"c8": {
"100": true,
"all": true,
"include": [
"source",
"tests"
],
"reportDir": "coverage",
"reporter": [
"text",
"html"
]
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/consistent-type-imports": "off",
"no-await-in-loop": "off"
},
"space": true
}
}