You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
orm/package.json

25 lines
688 B

{
"name": "flitter-orm",
"version": "0.4.0",
"description": "A MongoDB-based ORM for Node.js. Built for Flitter.",
"main": "index.js",
"repository": "https://git.garrettmills.dev/flitter/orm",
"author": "Garrett Mills",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"flitter-di": "^0.4.0",
"json-stringify-safe": "^5.0.1",
"mocha": "^7.1.0",
"mongodb": "^3.5.1",
"object-hash": "^2.0.1",
"sinon": "^9.0.0",
"uuid": "^3.4.0"
},
"scripts": {
"test_units": "./node_modules/.bin/mocha --reporter spec test/unit",
"test_integration": "./node_modules/.bin/mocha --reporter spec test/integration"
}
}