-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "rsa-pem-to-jwk",
"version": "1.1.3",
"description": "Converts PEM encoded RSA public and private keys to the JWK (JSON Web Key) format.",
"main": "rsa-pem-to-jwk.js",
"scripts": {
"test": "./node_modules/.bin/_mocha -w",
"cover": "./node_modules/.bin/istanbul cover --include-all-sources -x gulpfile.js node_modules/.bin/_mocha -- -R spec",
"clean": "rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/OADA/rsa-pem-to-jwk.git"
},
"keywords": [
"RSA",
"PEM",
"public",
"private",
"jwk",
"jwks"
],
"author": "Andrew Balmos <[email protected]> (https://github.com/abalmos)",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/OADA/rsa-pem-to-jwk/issues"
},
"homepage": "https://github.com/OADA/rsa-pem-to-jwk",
"devDependencies": {
"chai": "^1.10.0",
"gulp": "^3.8.10",
"gulp-jscs": "^1.3.1",
"gulp-jshint": "^1.9.0",
"istanbul": "^0.3.5",
"jshint-stylish": "^1.0.0",
"mocha": "^2.0.1",
"coveralls": "~2.11.2"
},
"dependencies": {
"object-assign": "^2.0.0",
"rsa-unpack": "0.0.6"
}
}