2022-03-03 13:40:38 +00:00
|
|
|
{
|
|
|
|
"name": "migration-helper",
|
|
|
|
"description": "A tiny helper library for migrating data.",
|
|
|
|
"license": "GPL-3.0-or-later",
|
2022-03-03 21:17:33 +00:00
|
|
|
"version": "0.1.2",
|
2022-03-03 13:40:38 +00:00
|
|
|
"author": "Holllo <helllo@holllo.cc>",
|
2022-03-03 21:13:16 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Holllo/migration-helper"
|
|
|
|
},
|
2022-03-03 13:40:38 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"prepublishOnly": "pnpm test && pnpm build",
|
|
|
|
"test": "xo && c8 ava && tsc --noEmit"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"ava": "^4.0.1",
|
|
|
|
"c8": "^7.11.0",
|
|
|
|
"ts-node": "^10.6.0",
|
|
|
|
"typescript": "^4.6.2",
|
|
|
|
"xo": "^0.48.0"
|
|
|
|
},
|
|
|
|
"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,
|
2022-03-03 14:01:06 +00:00
|
|
|
"rules": {
|
|
|
|
"no-await-in-loop": "off"
|
|
|
|
},
|
2022-03-03 13:40:38 +00:00
|
|
|
"space": true
|
|
|
|
}
|
|
|
|
}
|