-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.33 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@trust/jwc",
"version": "0.0.0",
"description": "JSON Web Certificate for JavaScript",
"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/anvilresearch/jwc.git"
},
"keywords": [
"JWC",
"JWT",
"JWK",
"JOSE",
"crypto",
"trust",
"certificate",
"x509"
],
"author": "MIT Connection Science",
"contributors": [
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
{
"name": "Greg Linklater",
"email": "[email protected]",
"url": "https://github.com/EternalDeiwos"
},
{
"name": "Ioan Budea",
"url": "ihttps://github.com/johnny90"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilresearch/jwc/issues"
},
"homepage": "https://github.com/anvilresearch/jwc#readme",
"devDependencies": {
"@trust/keyto": "^0.3.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^2.3.0",
"jsdoc": "^3.5.5",
"mocha": "^3.5.3",
"nock": "^9.0.17",
"nyc": "^11.2.1"
}
}