-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 882 Bytes
/
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
{
"name": "authgw",
"version": "1.0.3",
"description": "ExpressJS middleware to generate JWT auth tokens & provide user role management",
"author": "Tyler Fowler <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tylerFowler/authgw.git"
},
"main": "./dist/index.js",
"scripts": {
"test": "gulp test",
"build": "gulp build-dist",
"prepublish": "gulp"
},
"keywords": [
"auth",
"express",
"role",
"management"
],
"dependencies": {
"bluebird": "^3.3.5",
"jsonwebtoken": "^7.1.9",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.13.2",
"express": "^4.13.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-tape": "0.0.9",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
}
}