-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "@mongodb-js/compass-scripts",
"description": "MongoDB Compass repo scripts",
"author": {
"name": "MongoDB Inc",
"email": "[email protected]"
},
"bin": {
"compass-scripts": "./cli.js"
},
"private": true,
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mongodb-js/compass",
"version": "0.18.2",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"license": "SSPL",
"scripts": {
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "depcheck",
"check": "npm run lint && npm run depcheck",
"check-ci": "npm run check",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.3.2",
"@mongodb-js/prettier-config-compass": "^1.2.2",
"@mongodb-js/tsconfig-compass": "^1.2.2",
"depcheck": "^1.4.1",
"eslint": "^7.25.0",
"prettier": "^2.7.1"
},
"dependencies": {
"@babel/core": "^7.24.3",
"@mongodb-js/monorepo-tools": "^1.1.1",
"commander": "^11.0.0",
"electron": "^32.3.1",
"jsdom": "^24.1.3",
"make-fetch-happen": "^10.2.1",
"pacote": "^11.3.5",
"pkg-up": "^3.1.0",
"prompts": "^2.4.1",
"semver": "^7.6.2",
"typescript": "^5.0.4"
}
}