-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "node-restify-jwt-sample",
"version": "1.1.4",
"description": "A sample restify api service with JWT authentication",
"main": "index.js",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"posttest": "eslint .",
"test": "cross-env LOG_LEVEL=error mocha --recursive --reporter spec --exit ./test/specs/",
"start:debug": "cross-env LOG_LEVEL=debug node index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/supermamon/node-restify-jwt-sample"
},
"keywords": [
"node",
"api",
"restify",
"jwt",
"authentication"
],
"author": "Raymond Velasquez <at.supermamon@gmail.com> (https://supermamon.com)",
"license": "MIT",
"dependencies": {
"chai-http": "^4.3.0",
"jsonwebtoken": "^9.0.0",
"m-logger": "file:local_modules/m-logger",
"mocha": "^9.1.2",
"restify": "^11.1.0",
"restify-errors": "^8.0.2",
"restify-jwt-community": "^2.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.32.0"
}
}