forked from oauthjs/express-oauth-server
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 822 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": "restify-oauth-server",
"version": "0.2.0",
"description": "OAuth provider for restify",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "mocha --recursive test"
},
"repository": {
"type": "git",
"url": "git://github.com/AndrewAskins/restify-oauth-server"
},
"keywords": [
"restify",
"oauth",
"oauth2"
],
"author": {
"name": "Andrew Askins",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"bluebird": "^3.0.5",
"restify": "^4.0.4",
"oauth2-server": "next",
"thenify": "^3.0.0"
},
"devDependencies": {
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"should": "^7.1.0",
"sinon": "^1.14.1",
"supertest": "^0.15.0"
},
"engines": {
"node": ">=0.11"
}
}