-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.86 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
{
"name": "codebase-restify",
"version": "2.0.0",
"description": "A back end project template using Restify as a Node.js framework.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "mocha \"test/**/*.test.js\" --timeout=10000 --exit",
"cover": "nyc _mocha \"test/**/*.test.js\" --timeout=10000 --recursive --exit",
"lint": "eslint app test",
"lint-fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasimy-as/Codebase-Restify.git"
},
"engines": {
"node": "14.5.0",
"npm": "7.6.1"
},
"author": "Hasimy",
"license": "MIT",
"bugs": {
"url": "https://github.com/hasimy-as/Codebase-Restify/issues"
},
"homepage": "https://github.com/hasimy-as/Codebase-Restify#readme",
"dependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"confidence": "^5.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"generic-pool": "^3.7.2",
"hippie": "^0.6.1",
"istanbul": "^0.4.5",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.2.1",
"mongodb": "^3.6.3",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"redis": "^3.0.2",
"restify": "^8.5.1",
"sinon": "^9.2.2",
"uuid": "^3.4.0",
"validate.js": "^0.13.1",
"winston": "^2.4.5"
},
"nyc": {
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"check-coverage": true,
"reporter": [
"html",
"text",
"lcov",
"text-summary"
],
"exclude": [
"server.js",
"app/api/auth",
"app/api/index.js",
"app/database/redis/commands.js",
"test",
"coverage"
],
"all": true,
"cache": true,
"report-dir": "./coverage"
}
}