-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 983 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 983 Bytes
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
{
"main": "index.js",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.5.0"
},
"scripts": {
"test": "mocha --timeout=30000",
"install": "node-gyp rebuild"
},
"gypfile": true,
"name": "macos-export-certificate-and-key",
"version": "2.0.1",
"description": "Export a certificate and its corresponding private key from the MacOS default keychain",
"repository": {
"type": "git",
"url": "git+https://github.com/mongodb-js/macos-export-certificate-and-key.git"
},
"author": "Michael Rose <michael_rose@gmx.de>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mongodb-js/macos-export-certificate-and-key/issues"
},
"typings": "index.d.ts",
"os": [
"darwin"
],
"files": [
"src",
"binding.gyp",
"index.d.ts",
"index.js",
"LICENSE"
],
"homepage": "https://github.com/mongodb-js/macos-export-certificate-and-key#readme",
"devDependencies": {
"mocha": "^8.3.2"
}
}