forked from hdorgeval/testcafe-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.28 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.28 KB
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
{
"name": "testcafe-starter",
"version": "3.1.1",
"description": "starter project for e2e tests with testcafe",
"main": "index.js",
"scripts": {
"pretest": "rimraf screenshots",
"test": "testcafe chrome features/**/*.spec.ts --env=local --user=user1@example.com --selector-timeout 10000 --debug-on-fail",
"test:live": "testcafe-live chrome features/**/*.live.ts --env=local --user=user1@example.com --selector-timeout 10000",
"test:teamcity": "testcafe \"chrome --ignore-certificate-errors\" features/**/*.spec.ts --env=local --user=user1@example.com --selector-timeout 10000 --reporter teamcity --screenshots-on-fail --screenshots ./screenshots --quarantine-mode",
"tsc": "tsc",
"tsc:init": "tsc --init",
"tslint:init": "tslint --init",
"lint": "tslint --format stylish --config tslint.json -e **/*.d.ts **/*.ts",
"prettier-format": "prettier --write \"./**/*.ts\" ",
"prettier-check": "prettier --list-different \"./**/*.ts\" ",
"prebuild": "rimraf build",
"build": "npm run prettier-format && npm run lint && npm run tsc",
"pretestcafe-static-analyser": "rimraf reports",
"testcafe-static-analyser": "testcafe-static-analyser",
"build-step-mappings": "ts-node step-mappings/generator"
},
"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": "10.12.12",
"chalk": "2.4.1",
"cross-env": "5.2.0",
"jsome": "2.5.0",
"minimist": "1.2.0",
"rimraf": "2.6.2",
"slash": "2.0.0",
"testcafe": "0.23.2",
"testcafe-live": "0.1.4",
"testcafe-reporter-teamcity": "1.0.10",
"ts-node": "7.0.1",
"typescript": "3.2.2"
},
"devDependencies": {
"eslint": "5.9.0",
"prettier": "1.15.3",
"testcafe-static-analyser": "1.1.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.17.0",
"tslint-config-standard": "8.0.1"
},
"engines": {
"vscode": "^1.18.0",
"node": ">=6.0.0"
}
}