-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 976 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
39
40
41
42
{
"name": "sails-hook-jsonwebtoken",
"version": "1.0.1",
"description": "A sails hook for easily using jsonwebtoken",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robophil/sails-hook-jsonwebtoken.git"
},
"keywords": [
"sails",
"sails-hook",
"jwt",
"jsonwebtoken"
],
"author": "Philip Oghenerobo Balogun",
"license": "MIT",
"bugs": {
"url": "https://github.com/Robophil/sails-hook-jsonwebtoken/issues"
},
"homepage": "https://github.com/Robophil/sails-hook-jsonwebtoken#readme",
"sails": {
"isHook": true
},
"devDependencies": {
"mocha": "^3.1.2",
"sails": "~0.11.0",
"sails-disk": "^0.10.10",
"supertest": "^2.0.1"
},
"dependencies": {
"async": "^2.1.2",
"bcryptjs": "^2.4.0",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.16.4",
"sails-build-dictionary": "^0.10.1",
"sails-util": "^0.11.0"
}
}