-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "simple-express-acl",
"version": "0.2.4",
"description": "Dead simple Express ACL middleware that also works well with JSON Web Token's (JWT) and Passport's JWT strategy",
"main": "dist/simple-express-acl.js",
"author": "David Berube <david@swiftblue.com>",
"license": "MIT",
"homepage": "https://github.com/swiftblue/simple-express-acl#readme",
"scripts": {
"transpile": "babel --presets es2015 src --out-dir dist",
"clean": "rm -rf dist/",
"prepublish": "npm run build",
"build": "npm run clean && npm run transpile"
},
"bugs": {
"url": "https://github.com/swiftblue/simple-express-acl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/swiftblue/simple-express-acl.git"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0"
},
"dependencies": {
"fs": "0.0.1-security",
"js-yaml": "^3.8.3",
"lodash": "^4.17.4",
"path": "^0.12.7"
},
"keywords": [
"simple",
"express",
"acl",
"jwt",
"tokens",
"passport",
"passport-jwt",
"permissions",
"access",
"control"
]
}