-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
45
46
47
48
49
{
"name": "express-app-testing-demo",
"description": "a simple express app for demonstrating testing and code coverage",
"version": "1.0.0",
"engines": {
"node": ">=6.11.x"
},
"private": true,
"main": "app/server.js",
"scripts": {
"start": "nodemon app/server.js",
"test": "yarn run jest",
"test:e2e": "jest --runInBand e2e_tests/*.test.js",
"jest": "jest --no-watchman --coverage app/__tests__/*.test.js",
"lint": "eslint app/** e2e_tests/*",
"prettier": "prettier --write app/*.js app/__{tests,mocks}__/*.js e2e_tests/*.js"
},
"dependencies": {
"ejs": "~2.5.7",
"express": "~4.16.2",
"got": "^8.0.1",
"serve-favicon": "^2.4.5"
},
"devDependencies": {
"eslint": "^4.12.1",
"jest": "^21.2.1",
"jest-jenkins-reporter": "^1.0.1",
"nodemon": "^1.12.5",
"prettier": "^1.9.1",
"supertest": "~3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gregjopa/express-app-testing-demo"
},
"jest": {
"testResultsProcessor": "jest-jenkins-reporter",
"testEnvironment": "node",
"verbose": true
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "report.xml",
"indent": 4
},
"prettier": {
"singleQuote": true
}
}