ipsambeatae
Version:
Shared dependencies of Compass, the MongoDB extension for VSCode and MongoSH
83 lines (82 loc) • 2.45 kB
JSON
{
"name": "@mongodb-js/monorepo-tools",
"description": "MongoDB scripts for managing devtools monorepos",
"author": {
"name": "MongoDB Inc",
"email": "compass@mongodb.com"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "compass@mongodb.com"
},
"homepage": "https://github.com/mongodb-js/devtools-shared",
"version": "1.1.8",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/devtools-shared.git"
},
"license": "SSPL",
"files": [
"dist",
"!dist/**/*.spec.js",
"!dist/fixtures"
],
"main": "dist/index.js",
"bin": {
"precommit": "./bin/precommit.js",
"depalign": "./bin/depalign.js",
"monorepo-where": "./bin/where.js",
"bump-monorepo-packages": "./bin/bump-packages.js"
},
"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",
"pretest": "npm run compile",
"test": "mocha **/*.spec.*",
"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 ."
},
"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/mocha": "^9.0.0",
"@types/node": "^17.0.35",
"@types/pacote": "^11.1.5",
"@types/toposort": "^2.0.3",
"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"
},
"dependencies": {
"chalk": "^4.1.1",
"find-up": "^4.1.0",
"git-log-parser": "^1.2.0",
"glob": "^10.2.7",
"minimist": "^1.2.5",
"ora": "^5.4.0",
"pacote": "^11.3.5",
"pkg-up": "^3.1.0",
"semver": "^7.5.4",
"toposort": "^2.0.2"
},
"publishConfig": {
"access": "public"
}
}