@paratco/goose-js
Version:
JavaScript implementation of goose database migration tool
88 lines (87 loc) • 2.08 kB
JSON
{
"name": "@paratco/goose-js",
"version": "0.3.3",
"description": "JavaScript implementation of goose database migration tool",
"type": "module",
"author": "Paratco",
"license": "MIT",
"keywords": [
"migration",
"database",
"goose",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/Paratco/goose-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"files": [
"dist",
"README.md"
],
"bin": {
"goose-cli": "dist/cli.js"
},
"scripts": {
"build": "tsdown",
"build:check": "tsc --noEmit",
"dev": "tsx --env-file=.env src/index.ts",
"lint": "eslint --max-warnings=0",
"release": "semantic-release",
"release-dry-debug": "semantic-release --no-ci -d --debug",
"release-dry": "semantic-release --no-ci -d"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"commander": "^14.0.0",
"knex": "^3.1.0"
},
"devDependencies": {
"@paratco/eslint-config": "^3.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^24.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.32.0",
"mysql2": "^3.14.2",
"pg": "^8.16.3",
"semantic-release": "^24.2.7",
"sqlite3": "^5.1.7",
"tsdown": "^0.13.0",
"tsx": "^4.20.3",
"typescript": "~5.8.3"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"mysql": {
"optional": true
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"pg-native": {
"optional": true
},
"sqlite3": {
"optional": true
},
"tedious": {
"optional": true
}
},
"packageManager": "yarn@4.9.2"
}