UNPKG

1.77 kBJSONView Raw
1{
2 "name": "mongodb-download-url",
3 "version": "1.1.2",
4 "description": "Lookup download URLs for MongoDB versions.",
5 "scripts": {
6 "lint": "eslint src/**/*.ts test/**/*.ts",
7 "test": "npm run lint && npm run build && nyc -r text -r html mocha --colors -r ts-node/register test/*.ts",
8 "build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs",
9 "prepare": "npm run build",
10 "compile-ts": "tsc -p tsconfig.json"
11 },
12 "main": "lib/index.js",
13 "exports": {
14 "require": "./lib/index.js",
15 "import": "./.esm-wrapper.mjs"
16 },
17 "typings": "lib/index.d.ts",
18 "bin": {
19 "mongodb-download-url": "bin/mongodb-download-url.js"
20 },
21 "check": {
22 "ignore": [
23 "coverage/{*,**/*}"
24 ]
25 },
26 "precommit": [
27 "check",
28 "test"
29 ],
30 "dependencies": {
31 "debug": "^4.1.1",
32 "minimist": "^1.2.3",
33 "node-fetch": "^2.6.1",
34 "semver": "^7.1.1"
35 },
36 "devDependencies": {
37 "@types/mocha": "^8.2.1",
38 "@types/node": "^14.14.34",
39 "@typescript-eslint/eslint-plugin": "^4.18.0",
40 "@typescript-eslint/parser": "^4.18.0",
41 "eslint": "^7.22.0",
42 "eslint-config-semistandard": "^15.0.1",
43 "eslint-config-standard": "^16.0.2",
44 "eslint-plugin-import": "^2.22.1",
45 "eslint-plugin-node": "^11.1.0",
46 "eslint-plugin-promise": "^4.3.1",
47 "gen-esm-wrapper": "^1.1.1",
48 "mocha": "^8.3.2",
49 "nyc": "^15.1.0",
50 "ts-node": "^9.1.1",
51 "typescript": "^4.2.3"
52 },
53 "keywords": [
54 "mongodb",
55 "mongodb.js"
56 ],
57 "repository": {
58 "type": "git",
59 "url": "http://github.com/mongodb-js/download-url.git"
60 },
61 "author": "Lucas Hrabovsky <hrabovsky.lucas@gmail.com> (http://imlucas.com)",
62 "license": "Apache-2.0",
63 "homepage": "http://github.com/mongodb-js/download-url"
64}