-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "oauth2-server",
"description": "OAuth 2.0 server package",
"version": "0.7.0",
"private": "true",
"author": {
"name": "Jacques Labuschagne",
"email": "[email protected]",
"url": "http://jlabusch.github.io"
},
"repository": {
"type": "git",
"url": "git://github.com/jlabusch/oauth2-server.git"
},
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/"
}
],
"dependencies": {
"bower": "1.3.x",
"daemon": "1.1.x",
"express": "2.x.x",
"ejs": "0.7.x",
"oauth2orize": "1.0.x",
"passport": "0.2.x",
"passport-local": "1.0.x",
"passport-http": "0.2.x",
"passport-http-bearer": "1.0.x",
"passport-oauth2-client-password": "0.1.x",
"connect-ensure-login": "0.1.x",
"node-syslog": ">= 1.1.7",
"hiredis": ">= 0.1.16",
"redis": "0.10.x",
"pg": "3.3.x"
},
"devDependencies": {
"should": "3.3.x",
"mocha": "1.18.x",
"superagent": "0.18.x"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"prepublish": "./node_modules/bower/bin/bower install",
"start": "./start.sh",
"pretest": "./start.sh test; sleep 5",
"test": "./node_modules/mocha/bin/mocha -R spec",
"posttest": "./stop.sh",
"stop": "./stop.sh"
}
}