forked from t1msh/node-oauth20-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.02 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "oauth20-provider",
"version": "0.6.0",
"description": "OAuth 2.0 provider toolkit for nodeJS",
"keywords": [
"oauth",
"oauth2",
"provider",
"server",
"connect",
"express",
"middleware",
"http",
"api",
"rest"
],
"repository": {
"type": "git",
"url": "git://github.com/t1msh/node-oauth20-provider.git"
},
"bugs": {
"url": "https://github.com/t1msh/node-oauth20-provider/issues"
},
"author": {
"name": "Tim",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"async": "*"
},
"devDependencies": {
"body-parser": "*",
"cookie-parser": "*",
"express": "*",
"express-session": "*",
"jade": "*",
"mocha": "*",
"moment": "^2.10.3",
"redis": "*",
"supertest": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec"
},
"engines": {
"node": ">= 0.10.0"
}
}