-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 921 Bytes
/
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
{
"name": "node-jwk",
"version": "0.1.0",
"description": "JWK support",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js || exit 0"
},
"author": "Frank Schmid <[email protected]>",
"license": "Artistic-2.0",
"repository": {
"type": "git",
"url": "https://github.com/HyperBrain/node-jwk.git"
},
"engines": {
"node": ">=4.3.1"
},
"keywords": [
"jwk",
"jws",
"jwt",
"jwkset",
"security",
"token",
"convert",
"parse"
],
"bugs": "https://github.com/HyperBrain/node-jwk/issues",
"dependencies": {
"asn1.js": "^4.9.1",
"base64url": "^2.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.17.1",
"eslint-plugin-lodash": "^2.3.5",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.5.0",
"mocha": "^3.2.0"
}
}