-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.37 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
{
"name": "@expresso/auth",
"version": "1.1.0",
"description": "@expresso's authorization tool",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"lint": "tslint --project tsconfig.json",
"prepare": "npm run build:clean",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expresso/auth.git"
},
"keywords": [
"expresso",
"authentication",
"jwt",
"authorization",
"http",
"express"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/expresso/auth/issues"
},
"homepage": "https://github.com/expresso/auth#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"express-jwt": "^6.0.0",
"jwks-rsa": "^3.1.0"
},
"devDependencies": {
"@types/boom": "^7.3.0",
"@types/express": "^4.17.9",
"@types/express-jwt": "0.0.42",
"@types/node": "^14.14.9",
"husky": "^8.0.3",
"standard": "^16.0.3",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"contributors": [
"Rogério Munhoz <[email protected]>"
],
"files": [
"dist"
]
}