forked from frbuceta/restify-jwt-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "restify-jwt-community",
"version": "1.1.0",
"description": "JWT authentication middleware.",
"keywords": [
"auth",
"authentication",
"authorization",
"http",
"jwt",
"token",
"oauth",
"restify"
],
"files": [
"readme.md",
"lib",
"test"
],
"main": "./lib",
"author": {
"name": "Francisco Buceta",
"email": "frbuceta@gmail.com",
"url": "https://github.com/frbuceta/"
},
"license": "MIT",
"homepage": "https://github.com/frbuceta/restify-jwt-community#readme",
"repository": "github:frbuceta/restify-jwt-community",
"bugs": {
"url": "https://github.com/frbuceta/restify-jwt-community/issues"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node node_modules/.bin/jest",
"test:dev": "node_modules/.bin/jest --watch",
"test:coverage": "node node_modules/.bin/jest --coverage",
"prepublishOnly": "standard-version"
},
"dependencies": {
"async": "^3.1.0",
"express-unless": "^0.5.0",
"jsonwebtoken": "^8.5.1",
"restify-errors": "^8.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/restify-errors": "^4.3.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.3.0",
"eslint-config-google": "^0.14.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"restify": "^8.4.0",
"standard-version": "^7.0.0"
},
"peerDependencies": {
"restify": "5.x || 6.x || 7.x || 8.x",
"restify-errors": "5.x || 6.x || 7.x || 8.x"
},
"engines": {
"node": ">= 4.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:fix",
"pre-push": "npm test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}