UNPKG

ipsambeatae

Version:

Shared dependencies of Compass, the MongoDB extension for VSCode and MongoSH

80 lines (79 loc) 2.32 kB
{ "name": "mongodb-runner", "description": "The easiest way to test your code against MongoDB Server", "author": { "name": "MongoDB Inc", "email": "compass@mongodb.com" }, "publishConfig": { "access": "public" }, "bugs": { "url": "https://jira.mongodb.org/projects/COMPASS/issues", "email": "compass@mongodb.com" }, "homepage": "https://github.com/mongodb-js/devtools-shared", "version": "5.3.4", "repository": { "type": "git", "url": "https://github.com/mongodb-js/devtools-shared.git" }, "files": [ "dist", "bin" ], "bin": { "mongodb-runner": "bin/runner.js" }, "license": "Apache-2.0", "main": "dist/index.js", "exports": { "require": "./dist/index.js", "import": "./dist/.esm-wrapper.mjs" }, "types": "./dist/index.d.ts", "scripts": { "bootstrap": "npm run compile", "prepublishOnly": "npm run compile", "compile": "tsc -p tsconfig.json && gen-esm-wrapper . ./dist/.esm-wrapper.mjs", "typecheck": "tsc --noEmit", "eslint": "eslint", "prettier": "prettier", "lint": "npm run eslint . && npm run prettier -- --check .", "depcheck": "depcheck", "check": "npm run typecheck && npm run lint && npm run depcheck", "check-ci": "npm run check", "test": "mocha", "test-cov": "nyc -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test", "test-watch": "npm run test -- --watch", "test-ci": "npm run test-cov", "reformat": "npm run prettier -- --write ." }, "dependencies": { "@mongodb-js/mongodb-downloader": "^0.2.6", "debug": "^4.3.4", "mongodb": "^5.6.0", "yargs": "^17.7.2" }, "devDependencies": { "@mongodb-js/eslint-config-devtools": "0.9.9", "@mongodb-js/mocha-config-compass": "^0.10.0", "@mongodb-js/prettier-config-devtools": "^1.0.1", "@mongodb-js/tsconfig-compass": "^0.6.0", "@types/chai": "^4.2.21", "@types/debug": "^4.1.8", "@types/mocha": "^9.0.0", "@types/node": "^17.0.35", "@types/sinon-chai": "^3.2.5", "@types/yargs": "^17.0.24", "chai": "^4.3.6", "depcheck": "^1.4.1", "eslint": "^7.25.0", "gen-esm-wrapper": "^1.1.0", "mocha": "^8.4.0", "nyc": "^15.1.0", "prettier": "2.3.2", "sinon": "^9.2.3", "typescript": "^5.0.4" } }