forked from deitch/cansecurity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "cansecurity",
"description": "cansecurity is your all-in-one security library for user authentication, authorization and management in node expressjs apps",
"version": "3.2.0",
"license": "MIT",
"url": "http://github.com/deitch/cansecurity",
"author": "Avi Deitcher <[email protected]>",
"contributors": [
{
"name": "Alejandro Penedo https://github.com/IGZalejandropenedo",
"email": "[email protected]"
}
],
"engines": [
"node >= 8.0.0"
],
"main": "./lib/index.js",
"dependencies": {
"async": "^2.5.0",
"http-status-codes": "^1.3.0",
"jsonwebtoken": "^7.4.3",
"lodash": "^4.17.4"
},
"devDependencies": {
"cookie-parser": "^1.4.3",
"express": "^4.15.4",
"express-session": "^1.15.5",
"mocha": "^3.5.0",
"restify": "^4.3.0",
"supertest": "^3.0.0"
},
"keywords": [
"security",
"node",
"nodejs",
"express",
"cansecurity",
"authentication",
"authorization",
"declarative"
],
"scripts": {
"test": "mocha -R spec -g '(?:restify)' && mocha -R spec -g restify"
},
"repository": {
"type": "git",
"url": "http://github.com/deitch/cansecurity.git"
}
}