-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
40 lines (40 loc) · 862 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
{
"name": "node-oauth2-server-example",
"version": "1.3.2",
"description": "Working oauth2 server with minimal configuration",
"keywords": [
"oauth2-server",
"oauth2",
"oauth",
"grant",
"refresh-token",
"password",
"client-credentials"
],
"homepage": "https://github.com/pedroetb/node-oauth2-server-example",
"license": "MIT",
"author": "Pedro Trujillo",
"contributors": [
{
"name": "Pedro Trujillo",
"email": "[email protected]"
}
],
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/pedroetb/node-oauth2-server-example.git"
},
"scripts": {
"start": "node app.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"oauth2-server": "^3.0.1"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
}
}