transactions-mongoose
Version:
Transactions for mongoose
46 lines (45 loc) • 1.29 kB
JSON
{
"name": "transactions-mongoose",
"version": "1.2.7",
"description": "Transactions for mongoose",
"main": "index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rosbitskyy/transactions-mongoose.git"
},
"keywords": [
"nodejs",
"mongo",
"mongoose",
"transaction",
"mongoose transactions"
],
"author": {
"name": "🇺🇦Rosbitskyy Ruslan",
"email": "rosbitskyy@gmail.com",
"url": "https://github.com/rosbitskyy/"
},
"license": "Apache License Version 2.0, January 2004",
"dependencies": {
"mongoose": "latest"
},
"devDependencies": {
"mongodb-memory-server": "latest",
"dotenv": "^16.3.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^5.2.2",
"tsd": "^0.29.0",
"@types/node": "^20.8.10"
},
"scripts": {
"test": "npm run test:tsd && npm run test:insert && npm run test:update && npm run test:execute && npm run test:session",
"test:insert": "node ./tests/create-insert.test.js",
"test:update": "node ./tests/update-existing.test.js",
"test:execute": "node ./tests/execute.test.js",
"test:session": "node ./tests/sessions.test.js",
"test:mocha": "mocha ./tests/*.test.js",
"test:tsd": "npx tsd"
}
}