-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1007 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1007 Bytes
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
{
"name": "nodejs-application",
"version": "1.0.0",
"description": "A simple Nodejs Application with PostgreSQL Database.",
"keywords": [
"nodejs",
"postgresql",
"mocha",
"chai",
"mochawesome-report-generator",
"ci-cd"
],
"homepage": "https://github.com/source4learn/nodejs-application",
"repository": {
"type": "git",
"url": "git://github.com/source4learn/nodejs-application.git"
},
"author": "Ravi Kumar <source4learn@gmail.com>",
"main": "app.js",
"dependencies": {
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"ejs": "^2.6.1",
"express": "^4.17.1",
"mkdirp": "^1.0.4",
"mocha": "^7.1.1",
"mochawesome": "^6.1.0",
"path": "^0.12.7",
"pg": "^7.8.2",
"request": "^2.88.2",
"start-server-and-test": "^1.11.0"
},
"license": "MIT",
"engines": {
"node": ">= 4.5.0"
},
"scripts": {
"start": "node app.js",
"test": "mocha --reporter mochawesome",
"start-and-test": "start-test 3000"
}
}