-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "hadron-type-checker",
"description": "Hadron Type Checker",
"author": "Durran Jordan <[email protected]>",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mongodb-js/compass",
"version": "7.3.5",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"license": "SSPL",
"keywords": [
"mongodb-js"
],
"main": "index.js",
"compass:main": "index.js",
"scripts": {
"test-check-ci": "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": {
"bson": "^6.10.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.2.5",
"chai": "^4.2.0",
"depcheck": "^1.4.1",
"eslint": "^7.25.0",
"mocha": "^10.2.0"
}
}