-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.55 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": "jwks-utils",
"version": "1.0.10",
"description": "Utility methods for working with a JSON Web Key (JWK) and/or JSON Web Key Set (JWKs)",
"main": "jwks-utils.js",
"scripts": {
"test": "mocha -w",
"browser-test": "./node_modules/karma/bin/karma start --single-run",
"cover": "istanbul cover _mocha",
"lint": "jshint --reporter node_modules/jshint-stylish .",
"style": "jscs .",
"clean": "rm -rf ./coverage"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/OADA/node-jwks-utils.git"
},
"keywords": [
"jws",
"jwt",
"jwk",
"jwks",
"oada"
],
"author": {
"name": "Alex Layton",
"email": "alex@layton.in",
"url": "http://alex.layton.in"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OADA/node-jwks-utils/issues"
},
"homepage": "https://github.com/OADA/node-jwks-utils",
"devDependencies": {
"bluebird": "^3.5.5",
"brfs": "^2.0.2",
"browserify-istanbul": "^3.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.10.2",
"jshint-stylish": "^2.2.1",
"karma": "^4.1.0",
"karma-browserify": "^6.0.0",
"karma-coverage": "1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^6.1.4",
"superagent": "^5.1.0"
},
"dependencies": {
"deep-equal": "^1.0.1",
"jws": "^3.2.2"
}
}