-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
98 lines (98 loc) · 3.1 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@isaac.frontend/testcafe-reporter-allure",
"version": "2.4.1",
"author": "ISAAC E-commerce Solutions BV",
"license": "MIT",
"description": "An Allure reporter plugin for TestCafé. Used to generate test reports for e2e-tests.",
"engines": {
"node": ">=12"
},
"keywords": [
"testcafé",
"allure",
"integration"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/isaaceindhoven/testcafe-reporter-allure.git"
},
"bugs": {
"url": "https://github.com/isaaceindhoven/testcafe-reporter-allure/issues"
},
"homepage": "https://github.com/isaaceindhoven/testcafe-reporter-allure#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"test": "run-s test:*",
"test:lint": "eslint --ext .js,.ts --ignore-pattern !.* --ignore-path .gitignore .",
"test:lint:fix": "eslint --ext .js,.ts --ignore-pattern !.* --ignore-path .gitignore . --fix",
"test:unit": "jest --selectProjects unit",
"test:e2e": "node tests/runner.js",
"test:integration": "jest --selectProjects integration",
"allure": "allure generate ./allure/allure-results --clean -o ./allure/allure-report && allure open ./allure/allure-report",
"version": "node -v",
"browsers": "testcafe --list-browsers",
"semantic-release": "semantic-release",
"pack:contents": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepare": "is-ci || husky install"
},
"files": [
"dist/*"
],
"dependencies": {
"allure-js-commons": "^2.1.0",
"callsite-record": "4.1.5",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@rollup/plugin-typescript": "11.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",
"@types/rimraf": "3.0.2",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"allure-commandline": "2.29.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.2.0",
"globby": "11.1.0",
"husky": "9.0.11",
"is-ci": "3.0.1",
"jest": "28.1.3",
"lint-staged": "15.2.5",
"normalize-newline": "3.0.0",
"npm-run-all2": "6.2.0",
"prettier": "2.8.8",
"rollup": "2.79.2",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "23.1.1",
"testcafe": "3.6.0",
"ts-jest": "29.1.4",
"typescript": "5.4.5",
"vuepress": "1.9.10"
},
"workspaces": [
"examples/*"
],
"volta": {
"node": "20.14.0"
}
}