-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 774 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
{
"name": "Timeout",
"version": "0.0.1",
"description": "A simple NodeJs x Express web server that will send a http status 200 after a few seconds.",
"main": "app.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --config jestconfig.json",
"test-ci": "jest --config jestconfig.json && codecov"
},
"author": "Miguel Alemán <miguel.aleman@rentcars.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^6.2.0",
"express": "^4.14.1"
},
"devDependencies": {
"jest": "^24.0.0",
"jest-express": "^1.8.0",
"nodemon": "^1.11.0",
"supertest": "^3.3.0"
},
"engines": {
"node": "10.10.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}