-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.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
{
"name": "@klaster_1/testcafe-repeat-test",
"version": "1.0.2",
"description": "A tool to ergonomically repeat TestCafe tests",
"scripts": {
"generate-reports": "npx testcafe ./tests/testcafe/default.ts -r \"json:tests/default.report.json\" && testcafe ./tests/testcafe/no-rename.ts -r \"json:tests/no-rename.report.json\" && npx testcafe ./tests/testcafe/esm.mjs -r \"json:tests/esm.report.json\" --esm",
"test": "npm run generate-reports && node tests/index.mjs",
"test:watch": "npm run generate-reports && node --watch tests/index.mjs",
"watch": "npx rollup -c --watch",
"build": "rollup --config"
},
"main": "./dist/main.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/main.mjs",
"exports": {
"node": "./dist/main.cjs",
"import": "./dist/main.mjs",
"types": "./dist/src/index.d.ts"
},
"files": [
"dist"
],
"keywords": [
"testcafe"
],
"author": "Ilya Borisov <klaster1@gmail.com>",
"license": "MIT",
"peerDependencies": {
"testcafe": "*"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"rollup": "^4.18.1",
"testcafe": "^3.6.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/Klaster1/testcafe-repeat-test"
}
}