-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1022 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
{
"name": "sails-hook-authorization",
"version": "2.0.0-0",
"description": "A JWT authentication system",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test/bootstrap.test.js test/integration/**/*.test.js",
"postpublish": "git push upstream master && git push upstream --tags"
},
"author": {
"name": "Vijay Bindraban",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/spoonx/sails-hook-authorization.git"
},
"dependencies": {
"async": "^0.9.0",
"bcrypt": "^0.8.6",
"jsonwebtoken": "^6.2.0",
"lodash": "^4.0.0",
"request-helpers": "^2.0.1",
"sails-build-dictionary": "^0.10.1",
"sails-util": "^0.10.4"
},
"devDependencies": {
"sails": "~0.11.0",
"sails-disk": "^0.10.7",
"barrels": "^1.6.4",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sails-memory": "^0.10.6",
"supertest": "^1.2.0"
},
"sails": {
"isHook": true
}
}