forked from ssharwan/express-oauth-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 882 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
41
{
"name": "express-oauth-server",
"version": "1.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": "git://github.com/aditya-jha/node-oauth2-server.git",
"thenify": "^3.0.0"
},
"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"
}
}