forked from oauthjs/express-oauth-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 857 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": "express-oauth-server",
"version": "2.0.0",
"description": "OAuth provider for express",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "mocha --recursive test"
},
"repository": {
"type": "git",
"url": "git://github.com/seegno/express-oauth-server"
},
"keywords": [
"express",
"oauth",
"oauth2"
],
"author": {
"name": "Nuno Sousa",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"bluebird": "^3.0.5",
"express": "^4.13.3",
"oauth2-server": "https://github.com/TendaDigital/node-oauth2-server"
},
"devDependencies": {
"body-parser": "^1.14.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"should": "^7.1.0",
"sinon": "^1.14.1",
"supertest": "^0.15.0"
},
"engines": {
"node": ">=0.11"
}
}