1
Fork 0
migration-helper/package.json

39 lines
884 B
JSON
Raw Permalink Normal View History

2022-03-03 13:40:38 +00:00
{
2022-09-29 12:39:27 +00:00
"name": "@holllo/migration-helper",
"description": "Tiny helper library for migrating data.",
"license": "AGPL-3.0-or-later",
2023-05-08 10:26:29 +00:00
"version": "0.1.4",
2022-09-29 12:39:27 +00:00
"author": "Holllo <helllo@holllo.org>",
2022-03-03 21:13:16 +00:00
"repository": {
"type": "git",
2022-09-29 12:39:27 +00:00
"url": "https://git.bauke.xyz/Holllo/migration-helper"
2022-03-03 21:13:16 +00:00
},
2024-01-24 18:31:45 +00:00
"scripts": {
"prepublishOnly": "makers build"
},
2022-03-03 13:40:38 +00:00
"devDependencies": {
2024-01-24 18:15:09 +00:00
"@holllo/test": "^0.2.1",
2024-01-24 18:06:56 +00:00
"trash-cli": "^5.0.0",
2024-01-24 18:15:09 +00:00
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"xo": "^0.56.0"
2022-03-03 13:40:38 +00:00
},
"type": "module",
"main": "build/source/migration-helper.js",
"types": "build/source/migration-helper.d.ts",
"files": [
"build/source/",
"package.json",
"LICENSE",
"README.md"
],
"xo": {
"prettier": true,
2022-03-03 14:01:06 +00:00
"rules": {
2022-09-29 12:26:19 +00:00
"@typescript-eslint/consistent-type-imports": "off",
2022-03-03 14:01:06 +00:00
"no-await-in-loop": "off"
},
2022-03-03 13:40:38 +00:00
"space": true
}
}