forked from PPL19/Auto-Testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "auto-testing",
"version": "1.0.0",
"description": "Automatic Testing Script",
"main": "testing.js",
"scripts": {
"test": "jest --testResultsProcessor=jest-html-reporter"
},
"jest": {
"verbose": true,
"testResultsProcessor": "jest-html-reporter"
},
"jest-html-reporter": {
"pageTitle": "Auto Testing PPL",
"outputPath": "./src/test-report.html",
"includeFailureMsg": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/PPL19/Auto-Testing.git"
},
"author": "FauzanAr",
"license": "ISC",
"bugs": {
"url": "https://github.com/PPL19/Auto-Testing/issues"
},
"homepage": "https://github.com/PPL19/Auto-Testing#readme",
"devDependencies": {
"jest-environment-node": "^24.9.0",
"jest-html-reporter": "^2.7.0"
},
"dependencies": {
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^2.0.0"
}
}