forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "oidc-provider",
"version": "2.17.0",
"description": "OpenID Provider (OP) implementation for Node.js OpenID Connect servers.",
"keywords": [
"auth",
"authentication",
"basic",
"certified",
"config",
"connect",
"dynamic",
"express",
"hybrid",
"identity",
"implicit",
"koa",
"oauth",
"oauth2",
"oidc",
"openid",
"provider",
"server"
],
"homepage": "https://github.com/panva/node-oidc-provider",
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"files": [
"lib"
],
"main": "dist/index.js",
"repository": "panva/node-oidc-provider",
"scripts": {
"pre-commit": "npm run lint-fix && npm run build && npm run update-configuration && npm run coverage",
"coverage": "nyc babel-node ./test/run",
"heroku-postbuild": "npm install mongodb@^3.0.0",
"lint": "eslint lib example test",
"lint-fix": "eslint lib example test --fix",
"test": "babel-node ./test/run",
"update-configuration": "node ./docs/update-configuration && git add docs/configuration.md",
"postinstall": "babel lib -d dist --plugins transform-object-rest-spread,transform-es2017-object-entries",
"build": "babel lib -d dist --plugins transform-object-rest-spread,transform-es2017-object-entries"
},
"pre-commit": [
"lint-fix",
"build",
"update-configuration",
"coverage"
],
"dependencies": {
"base64url": "^2.0.0",
"debug": "^3.1.0",
"delegates": "^1.0.0",
"ejs": "^2.5.2",
"got": "^8.0.0",
"http-errors": "^1.4.0",
"kcors": "^2.2.1",
"koa": "^2.0.1",
"koa-compose": "^4.0.0",
"koa-router": "^7.0.1",
"lodash": "^4.5.0",
"lru-cache": "^4.0.0",
"node-jose": "^0.11.0",
"oidc-token-hash": "^2.0.0",
"raw-body": "^2.1.7",
"request": "^2.85.0",
"universal-url": "^1.0.0",
"url-parse": "^1.2.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-inline-import": "^2.0.5",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-minify-mangle-names": "^0.1.3",
"babel-plugin-transform-es2017-object-entries": "0.0.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^4.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"koa-body": "^2.0.0",
"koa-ejs": "^4.0.0",
"koa-mount": "^3.0.0",
"mocha": "^5.0.0",
"moment": "^2.19.3",
"nock": "^9.0.2",
"nyc": "^11.0.2",
"pre-commit": "^1.2.2",
"sinon": "^4.0.0",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}