-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.04 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": "mustbe",
"private": false,
"version": "0.4.0",
"description": "Authorization plumbing for Node+Express apps",
"keywords": [
"authorization",
"authorized",
"authenticated",
"activities",
"activity",
"security",
"cancan",
"roles",
"check",
"rules",
"express"
],
"homepage": "http://github.com/derickbailey/mustbe",
"bugs": {
"url": "http://github.com/derickbailey/mustbe/issues"
},
"license": "MIT",
"author": {
"name": "Derick Bailey",
"url": "http://derickbailey.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "http://github.com/derickbailey/mustbe.git"
},
"directories": {
"lib": "mustbe"
},
"main": "mustbe/index.js",
"scripts": {
"start": "grunt"
},
"dependencies": {
"rsvp": "3.1.0"
},
"devDependencies": {
"express": "4.13.3",
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-watch": "0.6.1",
"grunt-jasmine-nodejs": "1.4.3",
"supertest": "1.1.0"
}
}