-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.94 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
{
"name": "zenith-with-flow",
"version": "1.0.0",
"description": "Zenith with Types from Flow",
"main": "index.js",
"repository": "https://[email protected]/theghostjw/zwft.git",
"author": "theGhostJW <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/csv-parse": "^1.2.2",
"@types/deasync": "^0.1.2",
"@types/debug": "^4.1.7",
"@types/expect": "^24.3.0",
"@types/istanbul": "^0.4.30",
"@types/istanbul-reports": "^3.0.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.0",
"@types/node-ipc": "^9.2.0",
"@types/string": "^0.0.31",
"@types/xml2js": "^0.4.9",
"cross-env": "^7.0.3",
"gaze": "^1.1.3",
"istanbul": "^0.4.5",
"istanbul-reports": "^3.1.4",
"nyc": "^15.1.0",
"ts-mocha": "^9.0.2",
"typescript": "^4.6.2"
},
"scripts": {
"launchDetachedWdioServerInstance": "tsc && ts-node ./scripts/launchWebDriverIO.ts",
"test": "mocha --require ts-node/register ./src/test/**.test.ts",
"testWatch": "node ./scripts/yarnWatch.js test",
"testAll": "mocha --require ts-node/register ./src/test/*.test.ts ./src/test/**/*.integration.ts",
"testfgrep": "mocha --require ts-node/register ./src/test/**.test.ts ./src/test/**/*.integration.ts ./src/test/**/*.endpoints.ts ./testCases/**/*.web.ts ./testCases/**/*.ts -f",
"endpoints": "mocha --require ts-node/register ./src/test/**/*.endpoints.ts ./testCases/**/*.endpoints.ts",
"webUtilsEndpoints": "mocha --require ts-node/register ./src/test/**/WebUtilsTestImp.endpoints.ts",
"testAllWatch": "node ./scripts/yarnWatch.js testAll",
"testCoverage": "nyc --reporter=html --reporter=text mocha --compilers js:@babel/register ./src/test/**/*.test.js ./src/test/**/*.integration.js"
},
"nyc": {
"exclude": [
"**/*.integration.js",
"**/*.test.js",
"**/*.endpoints.js"
]
}
}