-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
82 lines (82 loc) · 2.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@mongosh/build",
"version": "0.0.0-dev.0",
"private": true,
"description": "MongoDB Shell Build Tools",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongosh.git"
},
"config": {
"unsafe-perm": true
},
"scripts": {
"compile": "tsc -p tsconfig.json",
"prepublish": "npm run compile",
"test": "mocha -r \"../../scripts/import-expansions.js\" --timeout 30000 -r ts-node/register --reporter \"../../configs/mocha-config-mongosh/reporter.ts\" \"./src/**/*.spec.ts\"",
"test-ci": "node ../../scripts/run-if-package-requested.js npm test",
"test-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test",
"test-ci-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test-ci",
"eslint": "eslint",
"lint": "npm run eslint . && npm run prettier -- --check .",
"check": "npm run lint && npm run depcheck",
"depcheck": "depcheck",
"evergreen-release": "ts-node -r ../../scripts/import-expansions.js src/index.ts",
"release": "ts-node src/index.ts trigger-release",
"prettier": "prettier",
"reformat": "npm run prettier -- --write . && npm run eslint --fix"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.15.1"
},
"mongosh": {
"unitTestsOnly": true
},
"devDependencies": {
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/monorepo-tools": "^1.1.10",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/command-exists": "^1.2.0",
"@types/cross-spawn": "^6.0.6",
"@types/download": "^8.0.1",
"@types/es-aggregate-error": "^1.0.2",
"@types/node-fetch": "^2.6.4",
"@types/rimraf": "^3.0.0",
"@types/tar": "^4.0.4",
"@types/tar-fs": "^2.0.0",
"@types/tmp": "^0.2.3",
"cross-spawn": "^7.0.5",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8",
"sinon-chai": "^3.5.0",
"yaml": "^2.3.1"
},
"dependencies": {
"@mongodb-js/devtools-github-repo": "^1.0.1",
"@mongodb-js/dl-center": "^1.1.1",
"@mongodb-js/mongodb-downloader": "^0.3.7",
"@mongodb-js/signing-utils": "^0.3.3",
"@octokit/rest": "^17.9.0",
"aws-sdk": "^2.674.0",
"boxednode": "^2.4.3",
"command-exists": "^1.2.9",
"download": "^8.0.0",
"es-aggregate-error": "^1.0.9",
"nock": "^13.0.11",
"node-fetch": "2.6.12",
"pkg-up": "^3.1.0",
"rimraf": "^3.0.2",
"semver": "^7.5.3",
"tar": "^6.1.15",
"tar-fs": "^2.1.0",
"tmp-promise": "^3.0.2"
}
}