-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "win-export-certificate-and-key",
"version": "2.1.0",
"description": "Export a certificate and its corresponding private key from the Windows CA store",
"main": "index.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha",
"install": "node-gyp rebuild",
"prepack": "npm run build",
"build": "gen-esm-wrapper . ./.esm-wrapper.mjs"
},
"author": "Anna Henningsen <[email protected]>",
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^3.1.0"
},
"license": "Apache-2.0",
"exports": {
"require": "./index.js",
"import": "./.esm-wrapper.mjs"
},
"homepage": "https://github.com/mongodb-js/win-export-certificate-and-key",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/win-export-certificate-and-key.git"
},
"bugs": "https://github.com/mongodb-js/win-export-certificate-and-key/issues",
"typings": "index.d.ts",
"os": [
"win32"
],
"files": [
"src",
"binding.gyp",
"index.d.ts",
"index.js",
"LICENSE",
".esm-wrapper.mjs"
],
"devDependencies": {
"gen-esm-wrapper": "^1.1.1",
"mocha": "^8.3.1"
}
}