UNPKG

ipsambeatae

Version:

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

74 lines (73 loc) 2.19 kB
{ "name": "@mongodb-js/mongodb-downloader", "description": "Downloads MongoDB server artifacts", "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": "0.2.6", "repository": { "type": "git", "url": "https://github.com/mongodb-js/devtools-shared.git" }, "files": [ "dist" ], "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": { "debug": "^4.3.4", "tar": "^6.1.15", "download": "^8.0.0", "mongodb-download-url": "^1.3.0", "node-fetch": "^2.6.11" }, "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/debug": "^4.1.8", "@types/download": "^8.0.2", "@types/mocha": "^9.0.0", "@types/node": "^17.0.35", "@types/tar": "^6.1.5", "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", "typescript": "^5.0.4" } }