-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 721 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 721 Bytes
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
{
"name": "sails-hook-jwt-auth",
"version": "1.0.3",
"description": "json web token authentication system",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/basic.js"
},
"author": "Sávio Lucena <saviogl@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saviogl/sails-hook-jwt-auth.git"
},
"dependencies": {
"jsonwebtoken": "^4.2.2",
"sails-util": "^0.10.4",
"async": "^0.9.0",
"lodash": "^3.6.0",
"sails-build-dictionary": "^0.10.1",
"bcrypt": "^0.8.2"
},
"devDependencies": {
"sails": "~0.11.0",
"mocha": "^2.2.4",
"sails-disk": "^0.10.7"
},
"sails": {
"isHook": true
}
}