-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "mongodb-instance-model",
"description": "MongoDB instance model",
"author": "Lucas Hrabovsky <[email protected]>",
"version": "12.24.10",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mongodb-js/compass",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"license": "SSPL",
"main": "index.js",
"compass:main": "index.js",
"types": "./index.d.ts",
"keywords": [
"mongodb-js"
],
"scripts": {
"test-check-ci": "npm run check && npm test",
"test": "mocha",
"check": "npm run lint && npm run depcheck",
"lint": "eslint \"./{src,lib,test,bin}/**/*.{js,jsx,ts,tsx}\" \"./*.js\" --no-error-on-unmatched-pattern",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"test-ci": "npm run test"
},
"dependencies": {
"ampersand-model": "^8.0.1",
"mongodb-collection-model": "^5.23.10",
"mongodb-data-service": "^22.23.10",
"mongodb-database-model": "^2.23.10"
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.1.9",
"@mongodb-js/prettier-config-compass": "^1.0.4",
"chai": "^4.3.4",
"depcheck": "^1.4.1",
"eslint": "^7.25.0",
"mocha": "^10.2.0"
}
}