@mongodb-js/compass-indexes 0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,83 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*! @preserve
8
+ * numeral.js
9
+ * version : 2.0.6
10
+ * author : Adam Draper
11
+ * license : MIT
12
+ * http://adamwdraper.github.com/Numeral-js/
13
+ */
14
+
15
+ /**
16
+ * @license
17
+ * Lodash <https://lodash.com/>
18
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
19
+ * Released under MIT license <https://lodash.com/license>
20
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
21
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
22
+ */
23
+
24
+ /**
25
+ * @license React
26
+ * react-is.production.min.js
27
+ *
28
+ * Copyright (c) Facebook, Inc. and its affiliates.
29
+ *
30
+ * This source code is licensed under the MIT license found in the
31
+ * LICENSE file in the root directory of this source tree.
32
+ */
33
+
34
+ /**
35
+ * @license React
36
+ * use-sync-external-store-shim.production.min.js
37
+ *
38
+ * Copyright (c) Facebook, Inc. and its affiliates.
39
+ *
40
+ * This source code is licensed under the MIT license found in the
41
+ * LICENSE file in the root directory of this source tree.
42
+ */
43
+
44
+ /**
45
+ * @license React
46
+ * use-sync-external-store-shim/with-selector.production.min.js
47
+ *
48
+ * Copyright (c) Facebook, Inc. and its affiliates.
49
+ *
50
+ * This source code is licensed under the MIT license found in the
51
+ * LICENSE file in the root directory of this source tree.
52
+ */
53
+
54
+ /** @license React v0.19.1
55
+ * scheduler.production.min.js
56
+ *
57
+ * Copyright (c) Facebook, Inc. and its affiliates.
58
+ *
59
+ * This source code is licensed under the MIT license found in the
60
+ * LICENSE file in the root directory of this source tree.
61
+ */
62
+
63
+ /** @license React v16.13.1
64
+ * react-is.production.min.js
65
+ *
66
+ * Copyright (c) Facebook, Inc. and its affiliates.
67
+ *
68
+ * This source code is licensed under the MIT license found in the
69
+ * LICENSE file in the root directory of this source tree.
70
+ */
71
+
72
+ /** @license React v16.14.0
73
+ * react-dom.production.min.js
74
+ *
75
+ * Copyright (c) Facebook, Inc. and its affiliates.
76
+ *
77
+ * This source code is licensed under the MIT license found in the
78
+ * LICENSE file in the root directory of this source tree.
79
+ */
80
+
81
+ //! moment.js
82
+
83
+ //! moment.js locale configuration
package/package.json ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "@mongodb-js/compass-indexes",
3
+ "productName": "Compass Indexes plugin",
4
+ "description": "Collection index management for Compass",
5
+ "version": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
6
+ "author": {
7
+ "name": "MongoDB Inc",
8
+ "email": "compass@mongodb.com"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/mongodb-js/compass.git"
16
+ },
17
+ "license": "SSPL",
18
+ "homepage": "https://github.com/mongodb-js/compass",
19
+ "bugs": {
20
+ "url": "https://jira.mongodb.org/projects/COMPASS/issues",
21
+ "email": "compass@mongodb.com"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "main": "dist/index.js",
27
+ "compass:main": "src/index.ts",
28
+ "exports": {
29
+ "browser": "./dist/browser.js",
30
+ "require": "./dist/index.js"
31
+ },
32
+ "compass:exports": {
33
+ ".": "./src/index.ts"
34
+ },
35
+ "scripts": {
36
+ "prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
37
+ "compile": "npm run webpack -- --mode production",
38
+ "prewebpack": "rimraf ./dist",
39
+ "webpack": "webpack-compass",
40
+ "analyze": "npm run webpack -- --mode production --analyze",
41
+ "typecheck": "tsc -p tsconfig-lint.json --noEmit",
42
+ "eslint": "eslint",
43
+ "prettier": "prettier",
44
+ "lint": "npm run eslint . && npm run prettier -- --check .",
45
+ "depcheck": "compass-scripts check-peer-deps && depcheck",
46
+ "check": "npm run typecheck && npm run lint && npm run depcheck",
47
+ "check-ci": "npm run check",
48
+ "test": "mocha",
49
+ "test-electron": "xvfb-maybe electron-mocha --no-sandbox",
50
+ "test-cov": "nyc -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test",
51
+ "test-watch": "npm run test -- --watch",
52
+ "test-ci": "npm run test-cov",
53
+ "test-ci-electron": "npm run test-electron",
54
+ "reformat": "npm run prettier -- --write ."
55
+ },
56
+ "peerDependencies": {
57
+ "@mongodb-js/compass-components": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
58
+ "@mongodb-js/compass-logging": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
59
+ "@mongodb-js/mongodb-redux-common": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
60
+ "bson": "^4.4.1",
61
+ "mongodb-index-model": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
62
+ "react": "^16.14.0"
63
+ },
64
+ "devDependencies": {
65
+ "@mongodb-js/eslint-config-compass": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
66
+ "@mongodb-js/mocha-config-compass": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
67
+ "@mongodb-js/prettier-config-compass": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
68
+ "@mongodb-js/tsconfig-compass": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
69
+ "@mongodb-js/webpack-config-compass": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
70
+ "@testing-library/react": "^12.1.4",
71
+ "@testing-library/user-event": "^13.5.0",
72
+ "chai": "^4.2.0",
73
+ "debug": "^4.2.0",
74
+ "depcheck": "^1.4.1",
75
+ "electron": "^15.5.7",
76
+ "enzyme": "^3.11.0",
77
+ "eslint": "^7.25.0",
78
+ "hadron-app": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
79
+ "hadron-app-registry": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
80
+ "lodash.clonedeep": "^4.5.0",
81
+ "lodash.contains": "^2.4.3",
82
+ "mocha": "^8.4.0",
83
+ "mongodb": "^4.10.0",
84
+ "mongodb-data-service": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
85
+ "mongodb-query-parser": "^2.4.6",
86
+ "numeral": "^2.0.6",
87
+ "nyc": "^15.1.0",
88
+ "prop-types": "^15.7.2",
89
+ "react-dom": "^16.14.0",
90
+ "react-redux": "^8.0.2",
91
+ "react-virtualized-auto-sizer": "^1.0.6",
92
+ "redux": "^4.2.0",
93
+ "redux-thunk": "^2.3.0",
94
+ "rimraf": "^3.0.2",
95
+ "semver": "^5.4.1",
96
+ "sinon": "^9.2.3",
97
+ "xvfb-maybe": "^0.2.1"
98
+ },
99
+ "dependencies": {
100
+ "@mongodb-js/compass-components": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
101
+ "@mongodb-js/compass-logging": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
102
+ "@mongodb-js/mongodb-redux-common": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
103
+ "bson": "^4.4.1",
104
+ "mongodb-index-model": "0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa18",
105
+ "react": "^16.14.0"
106
+ },
107
+ "gitHead": "85bec9e9b95acd9ace066254edfc492578f4f8b2"
108
+ }