smartmongo/package.json

43 lines
955 B
JSON
Raw Normal View History

2021-12-20 14:58:23 +00:00
{
"name": "@pushrocks/smartmongo",
2022-05-18 15:35:17 +00:00
"version": "2.0.1",
2021-12-20 14:58:23 +00:00
"private": false,
"description": "create a local mongodb for testing",
"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)",
"build": "(tsbuild --web)"
},
"devDependencies": {
2022-05-17 16:28:09 +00:00
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsbundle": "^2.0.3",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.34"
2021-12-20 14:58:23 +00:00
},
"dependencies": {
2021-12-20 15:24:04 +00:00
"@pushrocks/smartdata": "^4.0.27",
2022-05-17 16:28:09 +00:00
"@pushrocks/smartpromise": "^3.1.7",
"mongodb-memory-server": "^8.5.2"
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"
]
}