-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"name": "testcafe-typescript-starter",
"version": "1.0.0",
"description": "To demonstrate testcafe fixures with typescript",
"types": "./**/*.d.ts",
"jenkinsJobPath": "jenkins_home/jobs/",
"jenkinsJobConfigPath": "docker/jenkins/config/jobs",
"scripts": {
"clean": "rm -r reports/** || true",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --ext ts --fix",
"commit": "git-cz",
"e2e:chrome": "testcafe chrome ./testcafe/**/*.spec.ts",
"e2e:firefox": "testcafe firefox ./testcafe/**/*.spec.ts",
"e2e:headless": "testcafe chromium:headless ./testcafe/**/*.spec.ts",
"report": "allure generate reports/allure/allure-results --clean -o reports/allure/allure-report",
"report:publish": "allure open reports/allure/allure-report",
"docker:test:chrome": "docker run -u root -v ${PWD}:/tests -it testcafe/testcafe chromium /tests/**/*.spec.ts",
"docker:build:testcafe": "docker build -t testcafe -f docker/Dockerfile .",
"docker:stop:testcafe": "docker stop $(docker ps -qa --filter ancestor=testcafe)",
"docker:deleteAll": "docker rmi -f $(docker images -a -q)"
},
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/testcafe-typescript-starter.git"
},
"author": "Abhinaba Ghosh <[email protected]>",
"keywords": [],
"dependencies": {
"mssql": "^6.2.0",
"testcafe": "1.8.5"
},
"devDependencies": {
"@types/jquery": "^3.3.38",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"allure-commandline": "^2.13.0",
"angular": "^1.7.9",
"cz-conventional-changelog": "2.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-unicorn": "^18.0.1",
"husky": "3.0.0",
"lint-staged": "9.2.0",
"log4js": "5.2.2",
"prettier": "2.0.5",
"pretty-quick": "1.11.1",
"shelljs": "0.8.1",
"testcafe-reporter-allure": "^1.0.5",
"testcafe-reporter-spec": "^2.1.1",
"ts-node": "^8.9.1",
"ts-stopwatch": "0.0.4",
"tsconfig-paths": "^3.8.0",
"typescript": "3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"pretty-quick --staged"
],
"*.ts": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}