-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "authorized",
"version": "1.0.0",
"description": "Action based authorization middleware.",
"keywords": [
"auth",
"authorization",
"security",
"roles",
"express",
"connect"
],
"licenses": [
{
"type": "MIT",
"url": "http://tschaub.mit-license.org/"
}
],
"author": {
"name": "Tim Schaub",
"url": "http://tschaub.net/"
},
"homepage": "https://github.com/tschaub/authorized",
"repository": {
"type": "git",
"url": "https://github.com/tschaub/authorized.git"
},
"bugs": {
"url": "https://github.com/tschaub/authorized/issues"
},
"devDependencies": {
"chai": "1.5.0",
"mocha": "1.9.0",
"grunt": "0.4.1",
"grunt-contrib-jshint": "0.4.3",
"grunt-cafe-mocha": "0.1.2",
"grunt-contrib-watch": "0.3.1",
"grunt-cli": "0.1.7",
"express": "3.2.0",
"chai-http": "0.3.0"
},
"main": "./lib/authorized",
"scripts": {
"test": "grunt test",
"watch": "grunt watch"
},
"dependencies": {
"async": "0.9.0",
"pause": "0.0.1"
}
}