33 "version" : " 1.5.4" ,
44 "description" : " Lookup download URLs for MongoDB versions." ,
55 "scripts" : {
6- "lint" : " eslint src/**/*.ts test/**/*.ts" ,
7- "lint-fix" : " eslint src/**/*.ts test/**/*.ts --fix" ,
8- "test" : " npm run lint && npm run build && nyc -r text -r html mocha --colors -r ts-node/register test/*.ts" ,
9- "build" : " npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs" ,
10- "prepare" : " npm run build" ,
11- "compile-ts" : " tsc -p tsconfig.json"
6+ "bootstrap" : " npm run compile" ,
7+ "prepublishOnly" : " npm run compile" ,
8+ "compile" : " tsc -p tsconfig.json && gen-esm-wrapper . ./.esm-wrapper.mjs" ,
9+ "typecheck" : " tsc --noEmit" ,
10+ "eslint" : " eslint" ,
11+ "prettier" : " prettier" ,
12+ "lint" : " npm run eslint . && npm run prettier -- --check ." ,
13+ "lint-fix" : " npm run eslint . -- --fix && npm run prettier -- --write ." ,
14+ "depcheck" : " depcheck" ,
15+ "check" : " npm run typecheck && npm run lint && npm run depcheck" ,
16+ "check-ci" : " npm run check" ,
17+ "test" : " mocha" ,
18+ "test-cov" : " nyc -r text -r html -r lcov mocha --colors -r ts-node/register test/*.ts" ,
19+ "test-watch" : " npm run test -- --watch" ,
20+ "test-ci" : " npm run test-cov" ,
21+ "reformat" : " npm run prettier -- --write ."
1222 },
1323 "main" : " lib/index.js" ,
1424 "exports" : {
3545 "semver" : " ^7.1.1"
3646 },
3747 "devDependencies" : {
48+ "@mongodb-js/eslint-config-devtools" : " 0.9.10" ,
49+ "@mongodb-js/mocha-config-devtools" : " ^1.0.4" ,
50+ "@mongodb-js/prettier-config-devtools" : " ^1.0.1" ,
51+ "@mongodb-js/tsconfig-devtools" : " ^1.0.2" ,
52+ "@types/chai" : " ^4.2.21" ,
3853 "@types/mocha" : " ^9.1.1" ,
3954 "@types/node" : " ^17.0.35" ,
40- "@typescript-eslint/eslint-plugin" : " ^5.59.0" ,
41- "@typescript-eslint/parser" : " ^5.59.0" ,
42- "eslint" : " ^7.22.0" ,
43- "eslint-config-semistandard" : " ^17.0.0" ,
44- "eslint-config-standard" : " ^17.1.0" ,
45- "eslint-plugin-import" : " ^2.22.1" ,
46- "eslint-plugin-node" : " ^11.1.0" ,
47- "eslint-plugin-promise" : " ^6.1.1" ,
55+ "depcheck" : " ^1.4.1" ,
56+ "eslint" : " ^7.25.0" ,
4857 "gen-esm-wrapper" : " ^1.1.1" ,
4958 "mocha" : " ^8.4.0" ,
5059 "nyc" : " ^15.1.0" ,
51- "ts-node" : " ^10.9.2" ,
52- "typescript" : " ^5.0.4"
60+ "prettier" : " ^2.3.2" ,
61+ "sinon" : " ^9.2.3" ,
62+ "typescript" : " ^5.0.4" ,
63+ "ts-node" : " ^10.9.2"
5364 },
5465 "keywords" : [
5566 " mongodb" ,
6273 "author" :
" Lucas Hrabovsky <[email protected] > (http://imlucas.com)" ,
6374 "license" : " Apache-2.0" ,
6475 "homepage" : " https://github.com/mongodb-js/devtools-shared/tree/main/packages/download-url"
65-
66- }
76+ }
0 commit comments