{
	"name": "dbmage",
	"version": "0.0.2",
	"description": "database abstraction layer",
	"license": "MIT",
	"author": "Chase Moskal <chasemoskal@gmail.com>",
	"type": "module",
	"main": "x/dbmage.js",
	"files": [
		"x",
		"s"
	],
	"scripts": {
		"build": "run-s clean compile",
		"clean": "rimraf x && mkdirp x",
		"compile": "tsc",
		"watch": "npm run compile -s -- --watch",
		"test": "cynic node x/dbmage.test.js",
		"test-mongo": "cynic node x/drivers/mongo/mongo.test.js",
		"test-debug": "node inspect node_modules/cynic/dist/cli.js node x/dbmage.test.js",
		"test-debug-mongo": "node inspect node_modules/cynic/dist/cli.js node x/drivers/mongo/mongo.test.js"
	},
	"keywords": [
		"database",
		"abstraction",
		"database-abstraction",
		"crud"
	],
	"repository": {
		"type": "git",
		"url": "git+https://github.com/chase-moskal/dbmage.git"
	},
	"bugs": {
		"url": "https://github.com/chase-moskal/dbmage/issues"
	},
	"homepage": "https://github.com/chase-moskal/dbmage#readme",
	"devDependencies": {
		"@types/node": "^18.15.6",
		"cynic": "^0.2.0",
		"mkdirp": "^2.1.6",
		"npm-run-all": "^4.1.5",
		"rimraf": "^4.4.1",
		"typescript": "^5.0.2"
	},
	"dependencies": {
		"mongodb": "^5.1.0"
	}
}
