{ "name": "migration-helper", "description": "A tiny helper library for migrating data.", "license": "GPL-3.0-or-later", "version": "0.1.2", "author": "Holllo ", "repository": { "type": "git", "url": "https://github.com/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": { "no-await-in-loop": "off" }, "space": true } }