-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "nodelogin",
"version": "1.0.0",
"description": "A microservice for token based security authentication using express and jwt.io",
"main": "app.js",
"scripts": {
"dev": "node --env-file=.env --watch ./bin/www",
"start": "node --env-file=.env ./bin/www",
"test": "mocha --reporter progress test/ --exit --timeout 50000",
"coverage": "nyc mocha --exit --reporter progress ./test/ --timeout 50000",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danizavtz/tokenAuth.git"
},
"keywords": [
"express",
"node",
"jwt.io"
],
"author": "danizavtz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/danizavtz/tokenAuth/issues"
},
"homepage": "https://github.com/danizavtz/tokenAuth#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"express-jwt": "^8.4.1",
"express-validator": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5"
},
"devDependencies": {
"chai": "^4.4.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"sinon": "^18.0.0",
"supertest": "^7.0.0"
}
}