-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 795 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 795 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
{
"name": "node-oauth2-demo",
"version": "1.0.0",
"description": "oauth2 server using resource owner password credentials grant",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jeromyevans/node-oauth2-resource-owner-password-credentials-grant.git"
},
"author": "Jeromy Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeromyevans/node-oauth2-resource-owner-password-credentials-grant/issues"
},
"homepage": "https://github.com/jeromyevans/node-oauth2-resource-owner-password-credentials-grant",
"dependencies": {
"body-parser": "^1.13.0",
"express": "^4.12.4",
"jsonwebtoken": "^5.0.2",
"oauth2-server": "^2.4.0"
}
}