-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "@trust/keyto",
"version": "1.0.1",
"description": "A utility for translating cryptographic keys between representations",
"main": "src/index.js",
"scripts": {
"test": "nyc _mocha test",
"jsdoc": "jsdoc -c jsdoc.json -r",
"coverage": "nyc --reporter=lcov _mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EternalDeiwos/keyto.git"
},
"keywords": [
"PEM",
"JWK",
"Webcrypto",
"JOSE"
],
"contributors": [
{
"name": "Greg Linklater",
"email": "[email protected]"
},
{
"name": "JC Bailey",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EternalDeiwos/keyto/issues"
},
"homepage": "https://github.com/EternalDeiwos/keyto#readme",
"devDependencies": {
"chai": "^4.0.2",
"codecov": "^3.0.2",
"glob": "^7.1.2",
"jsdoc": "^3.6.3",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"dependencies": {
"asn1.js": "^5.2.0",
"base64url": "^3.0.1",
"elliptic": "^6.5.2"
}
}