forked from hdorgeval/testcafe-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.68 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
{
"name": "testcafe-starter",
"version": "7.2.0",
"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:reports/report.json --reporter-app-name='My App' --reporter-app-version='x.y.z' --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 --debug-on-fail -S -s screenshots --skip-js-errors",
"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": "13.7.0",
"chalk": "3.0.0",
"jsome": "2.5.0",
"minimist": "1.2.0",
"rimraf": "3.0.1",
"slash": "3.0.0",
"testcafe": "1.7.0",
"testcafe-reporter-cucumber-json": "4.0.0",
"testcafe-reporter-teamcity": "1.0.10",
"ts-node": "8.5.4",
"typescript": "3.7.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.9.0",
"@typescript-eslint/parser": "2.9.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-testcafe": "0.2.1",
"mem": "6.0.1",
"multiple-cucumber-html-reporter": "1.13.1",
"prettier": "1.19.1"
},
"engines": {
"node": ">=8.0.0"
}
}