-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
69 lines (69 loc) · 2.69 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
{
"name": "testcafe-starter",
"version": "7.4.1",
"description": "starter project for e2e tests with testcafe",
"main": "index.js",
"scripts": {
"build-step-mappings": "ts-node step-mappings/generator",
"build": "npm run prettier-format && npm run lint && npm run tsc",
"eslint-fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"lint": "eslint ./ --ext .js,.ts --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives --ignore-pattern 'coverage/*' --ignore-pattern 'node_modules/*'",
"prebuild": "rimraf build",
"pretest": "rimraf screenshots && rimraf reports",
"prettier-check": "prettier --list-different \"./**/*.ts\" ",
"prettier-format": "prettier --write \"./**/*.ts\" ",
"report": "ts-node report-generator.ts",
"test:json": "npm test -- --reporter cucumber-json --skip-js-errors",
"test:live": "testcafe chrome features/**/*.live.ts --live --env=local [email protected] --selector-timeout 10000 --skip-js-errors",
"test:teamcity": "testcafe \"chrome --ignore-certificate-errors\" features/**/*.spec.ts --env=local [email protected] --selector-timeout 10000 --reporter teamcity -S -s screenshots --quarantine-mode --skip-js-errors",
"test": "testcafe chrome features/**/*.spec.ts --env=local [email protected] --selector-timeout 10000 -S -s screenshots --skip-js-errors --skip-uncaught-errors --hostname localhost",
"tsc:init": "tsc --init",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdorgeval/testcafe-starter.git"
},
"keywords": [
"testcafe",
"typescript",
"e2e"
],
"author": "Henri d'Orgeval",
"license": "ISC",
"bugs": {
"url": "https://github.com/hdorgeval/testcafe-starter/issues"
},
"homepage": "https://github.com/hdorgeval/testcafe-starter#readme",
"dependencies": {
"@types/chalk": "2.2.0",
"@types/minimist": "1.2.0",
"@types/node": "14.0.23",
"chalk": "4.1.0",
"jsome": "2.5.0",
"minimist": "1.2.5",
"rimraf": "3.0.2",
"slash": "3.0.0",
"testcafe": "1.8.8",
"testcafe-browser-provider-browserstack": "1.13.0",
"testcafe-reporter-cucumber-json": "6.0.10",
"testcafe-reporter-teamcity": "1.0.12",
"ts-node": "8.10.2",
"typescript": "3.9.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"eslint": "7.4.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-testcafe": "0.2.1",
"mem": "6.1.0",
"multiple-cucumber-html-reporter": "1.17.0",
"prettier": "2.0.5"
},
"engines": {
"node": ">=8.0.0"
}
}