git-goose
Version:
a mongoose plugin that enables git like change tracking
62 lines • 1.5 kB
JSON
{
"name": "git-goose",
"version": "0.5.3",
"description": "a mongoose plugin that enables git like change tracking",
"license": "MIT",
"author": "Jake Holland",
"homepage": "https://github.com/hollandjake/git-goose",
"repository": {
"type": "git",
"url": "git://github.com/hollandjake/git-goose.git"
},
"bugs": {
"url": "https://github.com/hollandjake/git-goose/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist",
"index.ts",
"lib"
],
"types": "./dist/index.d.ts",
"dependencies": {
"mini-rfc6902": "^0.2.3",
"mongoose": ">=8.0.0"
},
"devDependencies": {
"@mnrendra/rollup-plugin-mixexport": "^1.2.0",
"@types/node": "^22.10.1",
"@vitest/coverage-istanbul": "^2.1.6",
"gts": "^5.3.1",
"mongodb-memory-server": "^10.1.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.6"
},
"keywords": [
"change tracking",
"commonjs",
"esm",
"git",
"history",
"mongoose",
"plugin",
"typescript"
],
"readme": "./README.md",
"scripts": {
"build": "vite build",
"clean": "gts clean",
"clean:build": "pnpm clean && pnpm build",
"lint": "gts lint",
"lint:fix": "gts fix",
"test": "vitest run",
"test:watch": "vitest"
}
}