forked from anvilresearch/connect-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"name": "camfou-connect-jwt",
"version": "0.0.0-development",
"description": "Fork of Anvil Connect JWT library for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.coffee",
"lint": "eslint -c .eslintrc lib/**",
"test-watch": "mocha test --watch",
"cover": "nyc --reporter=lcov npm run test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/camfou/connect-jwt.git"
},
"keywords": [
"JWT",
"JWS",
"JWE",
"OpenID",
"OpenID Connect",
"OAuth",
"OAuth 2.0"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/camfou/connect-jwt/issues"
},
"homepage": "https://github.com/camfou/connect-jwt",
"devDependencies": {
"chai": "^4.3.4",
"coffeescript": "^2.5.1",
"coveralls": "^3.1.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"semantic-release": "^17.4.7",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"base64url": "3.0.1",
"jsrsasign": "10.5.27",
"jwa": "2.0.0",
"lodash": "^4.17.20",
"valid-url": "1.0.9"
}
}