-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
98 lines (98 loc) · 2.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ui5-test-runner",
"version": "2.0.0",
"description": "Standalone test runner for UI5",
"main": "index.js",
"files": [
"defaults/*",
"src/**/*",
"*.js"
],
"bin": {
"ui5-test-runner": "./index.js"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "standard --fix",
"test": "npm run test:unit && npm run test:integration:jsdom && npm run test:integration:puppeteer && npm run test:integration:selenium-webdriver-chrome",
"test:unit": "jest",
"test:unit:debug": "jest --runInBand",
"test:integration:puppeteer": "node . --capabilities --browser $/puppeteer.js",
"test:integration:selenium-webdriver-chrome": "node . --capabilities --browser $/selenium-webdriver.js -- --browser chrome",
"test:integration:jsdom": "node . --capabilities --browser $/jsdom.js",
"test:report": "reserve --config ./test/report/reserve.json",
"build:doc": "node build/doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnaudBuchholz/ui5-test-runner.git"
},
"keywords": [
"REserve",
"test",
"continuous",
"integration",
"code",
"coverage",
"ui5"
],
"author": "Arnaud Buchholz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArnaudBuchholz/ui5-test-runner/issues"
},
"homepage": "https://github.com/ArnaudBuchholz/ui5-test-runner#readme",
"dependencies": {
"commander": "^10.0.0",
"mime": "^3.0.0",
"punybind": "^1.2.1",
"punyexpr": "^1.0.4",
"reserve": "^1.15.2"
},
"devDependencies": {
"jest": "^29.4.3",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"standard": "^17.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"standard": {
"env": [
"browser",
"qunit",
"node",
"jest"
]
},
"jest": {
"testTimeout": 15000,
"setupFilesAfterEnv": [
"./test/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/capabilities/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js"
],
"coveragePathIgnorePatterns": [
"\\.spec\\.js",
"output\\.js",
"b\\capabilities\\b"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}