This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
62
63
{
"name": "@trust/jwt",
"version": "0.5.1",
"description": "JSON Web Token for JavaScript",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha test",
"jsdoc": "./node_modules/.bin/jsdoc -c jsdoc.json -r",
"coverage": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/jwt.git"
},
"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/jwt/issues"
},
"homepage": "https://github.com/anvilresearch/jwt#README",
"dependencies": {
"@trust/json-document": "^0.1.4",
"@trust/jwa": "^0.4.6",
"@trust/jwk": "^0.3.3",
"@trust/webcrypto": "^0.5.0",
"base64url": "^2.0.0"
},
"devDependencies": {
"@trust/keyto": "^0.3.1",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"codecov": "^2.3.0",
"dirty-chai": "^2.0.1",
"jsdoc": "^3.5.4",
"mocha": "^3.5.0",
"nock": "^9.0.14",
"nyc": "^11.1.0",
"pouchdb": "^6.3.4",
"pouchdb-adapter-memory": "^6.3.4",
"sinon": "^2.1.0",
"sinon-chai": "^2.12.0"
}
}