|
1 | 1 | {
|
2 | 2 | "name": "gitlab-pipeline-deleter",
|
| 3 | + "type": "module", |
3 | 4 | "version": "2.3.18",
|
4 | 5 | "description": "A CLI tool that deletes old GitLab pipelines",
|
5 |
| - "main": "target/src/index.js", |
| 6 | + "exports": { |
| 7 | + "types": "./target/src/index.d.ts", |
| 8 | + "default": "./target/src/index.js" |
| 9 | + }, |
6 | 10 | "engines": {
|
7 | 11 | "node": ">=16"
|
8 | 12 | },
|
|
36 | 40 | "compile": "tsc --build",
|
37 | 41 | "lint": "eslint src test --ext '.ts,.tsx'",
|
38 | 42 | "copy:paste:detection": "jscpd src test",
|
39 |
| - "test:unit": "TS_NODE_PROJECT=tsconfig.base.json ava", |
| 43 | + "test:unit": "ava", |
40 | 44 | "test:unit:coverage": "c8 npm run test:unit",
|
41 |
| - "test:integration": "TS_NODE_PROJECT=tsconfig.base.json ava --config ava.config.integration.mjs", |
| 45 | + "test:integration": "ava --config ava.config.integration.js", |
42 | 46 | "release:dry": "release-it --dry-run --no-npm",
|
43 | 47 | "release": "release-it"
|
44 | 48 | },
|
45 | 49 | "dependencies": {
|
46 |
| - "@sindresorhus/is": "4.6.0", |
| 50 | + "@sindresorhus/is": "5.5.0", |
47 | 51 | "commander": "9.5.0",
|
48 | 52 | "cosmiconfig": "7.1.0",
|
49 | 53 | "date-fns": "2.30.0",
|
50 |
| - "got": "11.8.6", |
51 |
| - "ink": "3.2.0", |
52 |
| - "ink-spinner": "4.0.3", |
53 |
| - "p-queue": "6.6.2", |
54 |
| - "react": "17.0.2", |
55 |
| - "true-myth": "4.1.1", |
| 54 | + "got": "13.0.0", |
| 55 | + "ink": "4.2.0", |
| 56 | + "ink-spinner": "5.0.0", |
| 57 | + "p-queue": "7.3.4", |
| 58 | + "react": "18.2.0", |
| 59 | + "true-myth": "7.0.0", |
56 | 60 | "tslib": "2.6.0",
|
57 |
| - "urlcat": "2.0.4", |
58 | 61 | "zod": "3.21.4"
|
59 | 62 | },
|
60 | 63 | "devDependencies": {
|
61 | 64 | "@ava/typescript": "4.1.0",
|
62 | 65 | "@types/common-tags": "1.8.1",
|
63 |
| - "@types/react": "17.0.62", |
| 66 | + "@types/node": "20.4.2", |
| 67 | + "@types/react": "18.2.15", |
64 | 68 | "@types/sinon": "10.0.15",
|
65 | 69 | "@typescript-eslint/eslint-plugin": "5.62.0",
|
66 | 70 | "@typescript-eslint/parser": "5.62.0",
|
|
77 | 81 | "eslint-plugin-testing-library": "5.11.0",
|
78 | 82 | "fastify": "4.19.2",
|
79 | 83 | "fishery": "2.2.2",
|
80 |
| - "get-port": "7.0.0", |
81 |
| - "ink-testing-library": "2.1.0", |
| 84 | + "ink-testing-library": "3.0.0", |
82 | 85 | "jscpd": "3.5.9",
|
83 | 86 | "prettier": "2.8.8",
|
84 | 87 | "release-it": "16.1.2",
|
85 | 88 | "sinon": "14.0.2",
|
86 |
| - "typescript": "4.9.5" |
| 89 | + "typescript": "5.1.6" |
87 | 90 | }
|
88 | 91 | }
|
0 commit comments