-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "oada-trusted-jws",
"version": "1.0.5",
"description": "Check if a JWS was signed by an OADA trusted party",
"main": "index.js",
"scripts": {
"test": "mocha -w",
"cover": "istanbul cover _mocha",
"lint": "jshint --reporter node_modules/jshint-stylish/stylish.js .",
"style": "jscs .",
"clean": "rm -rf ./coverage"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/OADA/oada-trusted-jws-js.git"
},
"keywords": [
"oada"
],
"author": {
"name": "Alex Layton",
"email": "[email protected]",
"url": "http://alex.layton.in"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OADA/oada-trusted-jws-js/issues"
},
"homepage": "https://github.com/OADA/oada-trusted-jws-js",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.10.2",
"jshint-stylish": "^2.2.1",
"mocha": "^6.1.4",
"nock": "^10.0.6"
},
"dependencies": {
"bluebird": "^3.5.5",
"debug": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"jwks-utils": "^1.0.10",
"jws": "^3.2.2",
"lodash": "^4.17.11",
"pem-jwk": "^2.0.0",
"superagent": "^5.1.0"
}
}