This repository was archived by the owner on Feb 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.04 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
{
"name": "@cuaklabs/iocuak-e2e",
"private": true,
"description": "e2e test for iocuak",
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/iocuak.git"
},
"author": "Cuak McCuackl <cuak.mccuakl@cuaklabs.com>",
"license": "See license in \"LICENSE\" file",
"bugs": {
"url": "https://github.com/cuaklabs/iocuak/issues"
},
"homepage": "https://github.com/cuaklabs/iocuak/tree/master/packages/iocuak-e2e#readme",
"dependencies": {
"@cuaklabs/iocuak": "workspace:*",
"@cucumber/cucumber": "11.2.0",
"chai": "4.5.0",
"reflect-metadata": "0.2.2",
"sinon": "19.0.2",
"sinon-chai": "3.7.0"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"@rollup/plugin-multi-entry": "6.0.1",
"@rollup/plugin-typescript": "12.1.2",
"@types/chai": "4.3.20",
"@types/sinon": "17.0.4",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"eslint": "9.21.0",
"prettier": "3.5.2",
"rimraf": "6.0.1",
"rollup": "4.34.8",
"tslib": "2.8.1",
"typescript": "5.7.3"
},
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc --build tsconfig.cjs.json && pnpm exec iocuak-ts-package-cjs ./lib/cjs",
"build:esm": "pnpm run bundle:esm && pnpm exec iocuak-ts-package-esm ./lib/esm",
"build:clean": "rimraf lib",
"bundle:esm": "pnpm exec rollup -c ./rollup.config.mjs",
"format": "prettier --write ./src/**/*.ts",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test:e2e": "TS_NODE_PROJECT=\"tsconfig.cjs.json\" cucumber-js --config=config/cucumber/cucumber.ts.config.cjs.mjs",
"test:e2e:js": "pnpm run test:e2e:cjs:js && pnpm run test:e2e:esm:js",
"test:e2e:js:ci": "pnpm run test:e2e:cjs:js --profile ci && pnpm run test:e2e:esm:js --profile ci",
"test:e2e:cjs:js": "cucumber-js --config=config/cucumber/cucumber.js.config.cjs.mjs",
"test:e2e:esm:js": "cucumber-js --config=config/cucumber/cucumber.js.config.esm.mjs"
}
}