-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "express-jwt-fusionauth",
"version": "7.0.0",
"description": "Express middleware for JWT-based authentication against FusionAuth",
"keywords": [
"express",
"jwt",
"oauth",
"fusionauth"
],
"homepage": "https://github.com/trevorr/express-jwt-fusionauth#readme",
"bugs": {
"url": "https://github.com/trevorr/express-jwt-fusionauth/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trevorr/express-jwt-fusionauth.git"
},
"license": "ISC",
"author": "Trevor Robinson",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --project src",
"docs": "jsdoc2md --configure jsdoc2md/jsdoc2md.json --heading-depth 3 -t jsdoc2md/README.md.hbs src/index.ts > README.md",
"lint": "eslint 'src/**/*.ts'",
"prepare": "npm run build && npm run docs",
"prepublishOnly": "npm run lint",
"prettier": "prettier -w src test",
"test": "mocha 'test/**/*.test.ts'"
},
"husky": {
"hooks": {
"pre-push": "npm run build && npm run docs && npm run lint"
}
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "none"
},
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
},
"dependencies": {
"catch-unknown": "^2.0.0",
"express": "^4.18.2",
"got": "^11.8.6",
"jose": "^4.15.4",
"qs": "^6.11.2",
"set-cookie-parser": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/cookie-parser": "^1.4.6",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"@types/qs": "^6.9.7",
"@types/set-cookie-parser": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"eslint": "^8.56.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^10.3.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"nodemon": "^3.0.3",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}