-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
50
{
"name": "sails-hook-jwtoken",
"version": "0.0.9",
"description": "jsonwebtoken hook for Sails.js v1",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha && echo \"Custom tests all passed.\" && echo",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorgevrgs/sails-hook-jwtoken.git"
},
"keywords": [
"sails",
"jwt",
"jsonwebtoken",
"sails-hooks",
"sails-helpers"
],
"author": "Jorge Vargas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jorgevrgs/sails-hook-jwtoken/issues"
},
"homepage": "https://github.com/jorgevrgs/sails-hook-jwtoken#readme",
"dependencies": {
"@sailshq/lodash": "^3.10.4",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.20.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sails": "^1.5.2",
"sails-disk": "^2.1.1",
"sails-hook-orm": "^4.0.1",
"supertest": "^6.2.4"
},
"sails": {
"isHook": true,
"hookName": "jwtoken"
},
"engines": {
"node": ">=8"
}
}