forked from Mediahead-AG/node-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1020 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1020 Bytes
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
{
"name": "@genru/oauth2-server",
"description": "Complete, compliant and well tested module for implementing an OAuth2 Server/Provider with express in node.js",
"version": "2.3.1",
"keywords": [
"oauth",
"oauth2"
],
"author": {
"name": "Gen",
"email": "genjuroa@ymail.com"
},
"contributors": [
{
"name": "Gen",
"email": "genjuroa@ymail.com"
}
],
"main": "lib/oauth2server.js",
"dependencies": {
"basic-auth": "~0.0.1"
},
"devDependencies": {
"body-parser": "^1.19.2",
"express": "^4.17.3",
"mocha": "^9.2.2",
"should": "~4.0.4",
"supertest": "^6.2.2"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"engines": {
"node": ">=12.1"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/genru/node-oauth2-server.git"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com"
}
}