-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "jwtauthentication",
"version": "1.0.0",
"description": "A simple NodeJS, Express, Typescript based Rest service using jwt for the token creation, after autehtication successfully it will alow to access the other rest services.",
"main": "build/server.js",
"scripts": {
"test": "jest --forceExit",
"build-ts": "tsc",
"serve": "node build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlprajapati/jwtauthentication.git"
},
"keywords": [],
"author": "m l prajapati",
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"@types/express": "^4.0.37",
"@types/node": "^8.0.28",
"body-parser": "^1.18.0",
"cors": "^2.8.4",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"load-json-file": "^3.0.0",
"q": "^1.5.0",
"rootpath": "^0.1.2"
},
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/supertest": "^2.0.3",
"jest": "^21.1.0",
"supertest": "^3.0.0",
"ts-jest": "^21.0.1",
"typescript": "^2.5.2"
}
}