-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 926 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
{
"name": "isptoolbox",
"version": "1.0.0",
"private": true,
"description": "E2E Testing using Cypress of ISP Toolbox",
"devDependencies": {
"@cypress/code-coverage": "^3.9.11",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"cypress": "^6.9.1",
"cypress-file-upload": "^5.0.8"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [],
"reporter": [
"lcov",
"text"
],
"report-dir": "./frontend_coverage/reports",
"temp-dir": "./frontend_coverage/.nyc_output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ISPToolbox/ISPToolbox.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ISPToolbox/ISPToolbox/issues"
},
"homepage": "https://github.com/ISPToolbox/ISPToolbox#readme"
}