-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.97 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
{
"name": "@mongodb-js/oidc-plugin",
"description": "MongoDB OIDC plugin for the Node.js driver",
"author": {
"name": "MongoDB Inc",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mongodb-js/oidc-plugin",
"version": "1.1.5",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/oidc-plugin.git"
},
"files": [
"dist",
"index.d.ts",
"README.md"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/.esm-wrapper.mjs"
},
"engines": {
"node": ">= 16.20.1"
},
"types": "./index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "tsc -p tsconfig.json && api-extractor run && rimraf 'dist/**/*.d.ts*' && gen-esm-wrapper . ./dist/.esm-wrapper.mjs",
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "depcheck",
"check": "npm run typecheck && npm run lint && npm run depcheck",
"check-ci": "npm run check",
"test": "xvfb-maybe --auto-servernum -- mocha",
"test-electron": "xvfb-maybe --auto-servernum -- electron-mocha",
"test-cov": "nyc -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test",
"test-watch": "npm run test -- --watch",
"test-ci": "npm run test-cov",
"reformat": "npm run prettier -- --write . && npm run eslint . -- --fix",
"prepare": "husky install",
"precommit": "precommit"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.4",
"@mongodb-js/eslint-config-devtools": "^0.9.9",
"@mongodb-js/mocha-config-devtools": "^1.0.0",
"@mongodb-js/monorepo-tools": "^1.1.4",
"@mongodb-js/oidc-mock-provider": "^0.10.2",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-devtools": "^1.0.0",
"@types/chai": "^4.2.21",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.2",
"@types/node": "^18.13.0",
"@types/oidc-provider": "^8.1.1",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.3.6",
"depcheck": "^1.4.1",
"electron": "^26.2.0",
"electron-mocha": "^12.0.0",
"eslint": "^7.25.0",
"gen-esm-wrapper": "^1.1.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"mongodb": "^6.7.0",
"mongodb-log-writer": "^1.1.5",
"mongodb-runner": "^5.2.0",
"node-fetch": "^3.3.1",
"nyc": "^15.1.0",
"oidc-provider": "https://github.com/panva/node-oidc-provider/archive/refs/tags/v7.14.3.tar.gz",
"prettier": "2.3.2",
"rimraf": "^5.0.0",
"sinon": "^15.0.3",
"typescript": "^5.0.4",
"webdriverio": "^8.5.9",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"express": "^4.18.2",
"open": "^9.1.0",
"openid-client": "^5.6.4"
}
}