-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "@villedemontreal/jwt-validator",
"version": "5.10.3",
"description": "Module to validate JWT (JSON Web Tokens)",
"main": "dist/src/index.js",
"typings": "dist/src",
"files": [
"src",
"dist"
],
"scripts": {
"start": "node run test",
"test": "node run test",
"compile": "node run compile",
"prepare": "node run compile",
"prepublishOnly": "node run test",
"lint": "node run lint",
"lint-fix": "node run lint-fix",
"tslint": "node run tslint",
"tslint-fix": "node run tslint-fix",
"prettier": "node run prettier",
"prettier-fix": "node run prettier-fix",
"watch": "node run watch"
},
"keywords": [
"mtl",
"jwt",
"jwt-verification",
"security",
"authentication"
],
"author": "Ville de Montréal",
"license": "MIT",
"dependencies": {
"@types/nock": "10.0.3",
"@villedemontreal/general-utils": "5.17.5",
"@villedemontreal/http-request": "7.4.11",
"@villedemontreal/logger": "6.6.3",
"app-root-path": "3.1.0",
"http-header-fields-typed": "1.3.0",
"http-status-codes": "2.3.0",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"moment": "2.30.1",
"nock": "13.5.5",
"superagent": "10.1.0"
},
"devDependencies": {
"@types/app-root-path": "1.2.8",
"@types/chai": "4.3.19",
"@types/chai-as-promised": "^7.1.6",
"@types/express": "4.17.21",
"@types/fs-extra": "11.0.4",
"@types/http-status-codes": "1.2.0",
"@types/jsonwebtoken": "9.0.7",
"@types/lodash": "4.17.9",
"@types/mocha": "10.0.8",
"@types/node": "20.x",
"@types/request": "2.48.12",
"@types/request-promise-native": "1.0.21",
"@types/sinon": "17.0.3",
"@types/superagent": "8.1.9",
"@types/validator": "13.12.2",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"@villedemontreal/scripting": "2.1.9",
"chai": "4.5.0",
"chai-as-promised": "^7.1.1",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.2.0",
"mocha": "10.7.3",
"mocha-jenkins-reporter": "0.4.8",
"mock-express-request": "0.2.2",
"node-mocks-http": "1.16.0",
"node-notifier": "10.0.1",
"nyc": "17.1.0",
"sinon": "19.0.2",
"typescript": "5.6.2",
"validator": "13.12.0"
}
}