-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
104 lines (104 loc) · 3.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@mongodb-js/compass-schema",
"description": "Compass Schema Tab Plugin",
"author": {
"name": "MongoDB Inc",
"email": "[email protected]"
},
"private": true,
"version": "6.48.0",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"homepage": "https://github.com/mongodb-js/compass",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"license": "SSPL",
"files": [
"dist"
],
"main": "dist/index.js",
"compass:main": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"compass:exports": {
".": "./src/index.ts"
},
"scripts": {
"bootstrap": "npm run compile",
"compile": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"check": "npm run typecheck && npm run lint && npm run depcheck",
"check-ci": "npm run check",
"test": "mocha",
"test-electron": "xvfb-maybe electron-mocha --no-sandbox",
"test-cov": "nyc --compact=false --produce-source-map=false -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test",
"test-watch": "npm run test -- --watch",
"test-ci": "npm run test-cov",
"test-ci-electron": "npm run test-electron",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.1.7",
"@mongodb-js/mocha-config-compass": "^1.4.2",
"@mongodb-js/my-queries-storage": "^0.19.0",
"@mongodb-js/prettier-config-compass": "^1.0.2",
"@mongodb-js/testing-library-compass": "^1.0.2",
"@mongodb-js/tsconfig-compass": "^1.0.5",
"@types/chai": "^4.2.21",
"@types/leaflet": "^1.9.8",
"@types/leaflet-draw": "^1.0.11",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.10",
"chai": "^4.3.4",
"depcheck": "^1.4.1",
"electron-mocha": "^12.2.0",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"react-dom": "^17.0.2",
"sinon": "^9.2.3",
"typescript": "^5.0.4",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@mongodb-js/compass-collection": "^4.46.0",
"@mongodb-js/compass-components": "^1.31.1",
"@mongodb-js/compass-connections": "^1.47.0",
"@mongodb-js/compass-field-store": "^9.22.0",
"@mongodb-js/compass-logging": "^1.4.10",
"@mongodb-js/compass-telemetry": "^1.2.3",
"@mongodb-js/compass-query-bar": "^8.48.0",
"@mongodb-js/connection-storage": "^0.23.0",
"bson": "^6.8.0",
"compass-preferences-model": "^2.30.0",
"d3": "^3.5.17",
"hadron-app-registry": "^9.2.7",
"hadron-document": "^8.6.5",
"leaflet": "^1.5.1",
"leaflet-defaulticon-compatibility": "^0.1.1",
"leaflet-draw": "^1.0.4",
"lodash": "^4.17.21",
"mongodb": "^6.9.0",
"mongodb-query-util": "^2.2.9",
"mongodb-schema": "^12.2.0",
"numeral": "^1.5.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-leaflet": "^2.4.0",
"react-leaflet-draw": "^0.19.0",
"reflux": "^0.4.1",
"@mongodb-js/reflux-state-mixin": "^1.0.7"
},
"is_compass_plugin": true
}