-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 735 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 735 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
{
"name": "rsa-pem-from-mod-exp",
"version": "0.8.6",
"description": "Create RSA Public Key PEM from Modulus and Exponent value in node.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/tracker1/node-rsa-pem-from-mod-exp.git"
},
"keywords": [
"rsa",
"public-key",
"pem",
"modulus",
"exponent"
],
"author": "Michael J. Ryan <tracker1+github@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tracker1/node-rsa-pem-from-mod-exp/issues"
},
"files": [
"index.js",
"index.d.ts"
],
"devDependencies": {
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"scripts": {
"test": "nyc mocha"
}
}