smartmongo/package.json

60 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2021-12-20 14:58:23 +00:00
{
2023-07-10 08:16:43 +00:00
"name": "@push.rocks/smartmongo",
2023-08-08 14:59:47 +00:00
"version": "2.0.10",
2021-12-20 14:58:23 +00:00
"private": false,
2024-04-14 16:00:24 +00:00
"description": "A module for creating and managing a local MongoDB instance for testing purposes.",
2021-12-20 14:58:23 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-17 16:28:09 +00:00
"type": "module",
2021-12-20 14:58:23 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2023-08-08 14:59:47 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2021-12-20 14:58:23 +00:00
},
"devDependencies": {
2023-08-08 12:07:05 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.8"
2021-12-20 14:58:23 +00:00
},
"dependencies": {
2023-08-08 12:07:05 +00:00
"@push.rocks/mongodump": "^1.0.7",
"@push.rocks/smartdata": "^5.0.23",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"mongodb-memory-server": "^8.14.0"
2021-12-20 14:58:23 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:00:24 +00:00
],
"keywords": [
"mongodb",
"testing",
"local database",
"replica set",
"memory server",
"database management",
"typescript"
2024-05-29 12:14:52 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartmongo",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmongo.git"
}
2024-04-14 16:00:24 +00:00
}