-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "mongodb-explain-compat",
"version": "3.1.1",
"description": "Convert mongodb SBE explain output to 4.4 explain output",
"keywords": [
"mongodb",
"sbe",
"explain"
],
"main": "lib/index.js",
"compass:main": "lib/index.js",
"exports": {
"import": "./.esm-wrapper.mjs",
"require": "./lib/index.js",
"types": "./index.d.ts"
},
"compass:exports": {
".": "./lib/index.js"
},
"types": "./index.d.ts",
"files": [
"LICENSE",
"lib",
"package.json",
"README.md",
".esm-wrapper.mjs"
],
"scripts": {
"lint": "eslint **/*.js",
"test": "npm run compile && nyc mocha --colors test/*.js",
"compile": "gen-esm-wrapper . ./.esm-wrapper.mjs",
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"test-ci": "npm run test",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"bootstrap": "npm run compile",
"check": "npm run lint && npm run depcheck",
"check-ci": "npm run check"
},
"homepage": "https://github.com/mongodb-js/compass",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"license": "SSPL",
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.1.7",
"eslint": "^7.25.0",
"gen-esm-wrapper": "^1.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}