-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.47 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": "express-jwtoken",
"version": "0.2.3",
"description": "Simple express JSON Web Token library.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc mocha",
"build": "gulp compile",
"watch": "gulp watch"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"author": {
"name": "Luca Scarignella",
"email": "lucacode1@gmail.com",
"url": "https://luca.scaringella.de"
},
"keywords": [
"jwt",
"express",
"middleware",
"http",
"authentication",
"jsonWebToken",
"token",
"protect",
"scalable",
"secure",
"easy",
"tools"
],
"repository": {
"type": "git",
"url": "https://github.com/LucaCode/express-jwtoken.git"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@types/express": "4.16.1",
"jsonwebtoken": "8.5.1"
},
"devDependencies": {
"@types/mocha": "5.2.6",
"body-parser": "1.18.3",
"chai": "4.2.0",
"chai-http": "4.2.1",
"cookie-parser": "1.4.4",
"express": "4.16.4",
"gulp": "4.0.1",
"gulp-typescript": "5.0.1",
"mocha": "6.1.4",
"nyc": "14.0.0",
"source-map-support": "^0.5.12",
"ts-node": "8.1.0",
"typescript": "3.4.5"
}
}