|
1 | 1 | {
|
2 | 2 | "name": "oop-timers",
|
3 |
| - "version": "5.0.0+", |
| 3 | + "version": "5.1.0", |
4 | 4 | "repository": "[email protected]:dzek69/oop-timers.git",
|
5 | 5 | "author": "Jacek Nowacki",
|
6 | 6 | "license": "MIT",
|
7 | 7 | "scripts": {
|
8 | 8 | "test": "NODE_ENV=test jest",
|
9 | 9 | "docs": "typedoc src/index.ts --skipErrorChecking --out docs --includeVersion",
|
10 |
| - "compile": "yarn compile:esm && yarn compile:cjs", |
| 10 | + "compile": "pnpm run compile:esm && pnpm run compile:cjs", |
11 | 11 | "compile:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs",
|
12 | 12 | "compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
|
13 | 13 | "typecheck": "tsc --noEmit",
|
14 | 14 | "lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
|
15 |
| - "lint:fix": "yarn lint --fix", |
16 |
| - "prepack": "yarn compile", |
17 |
| - "prepublishOnly": "yarn audit && yarn lint && yarn test && yarn docs", |
| 15 | + "lint:fix": "pnpm run lint --fix", |
| 16 | + "prepack": "pnpm run compile", |
| 17 | + "prepublishOnly": "pnpm audit && pnpm run lint && pnpm run test && pnpm run docs", |
18 | 18 | "start:dev": "nodemon",
|
19 |
| - "start:dev:compatibility": "TS_NODE_FILES=true yarn start:dev", |
| 19 | + "start:dev:compatibility": "TS_NODE_FILES=true pnpm run start:dev", |
20 | 20 | "prepare": "husky install",
|
21 |
| - "updates": "npx --yes npm-check-updates --dep prod", |
22 |
| - "updates:dev": "npx --yes npm-check-updates --dep dev", |
23 |
| - "updates:all": "npx --yes npm-check-updates" |
| 21 | + "updates": "pnpm dlx npm-check-updates --dep prod", |
| 22 | + "updates:dev": "pnpm dlx npm-check-updates --dep dev", |
| 23 | + "updates:all": "pnpm dlx npm-check-updates" |
24 | 24 | },
|
25 | 25 | "exports": {
|
26 | 26 | ".": {
|
|
35 | 35 | "type": "module",
|
36 | 36 | "dependencies": {},
|
37 | 37 | "devDependencies": {
|
38 |
| - "@babel/core": "^7.21.4", |
39 |
| - "@babel/preset-env": "^7.21.4", |
40 |
| - "@babel/preset-typescript": "^7.21.4", |
41 |
| - "@dzek69/eslint-config-base": "^2.4.0", |
42 |
| - "@dzek69/eslint-config-typescript": "^1.1.0", |
43 |
| - "@typescript-eslint/eslint-plugin": "^5.58.0", |
44 |
| - "@typescript-eslint/parser": "^5.58.0", |
| 38 | + "@babel/core": "^7.22.20", |
| 39 | + "@babel/preset-env": "^7.22.20", |
| 40 | + "@babel/preset-typescript": "^7.22.15", |
| 41 | + "@dzek69/eslint-config-base": "^2.5.0", |
| 42 | + "@dzek69/eslint-config-import": "^1.3.0", |
| 43 | + "@dzek69/eslint-config-import-typescript": "^1.0.1", |
| 44 | + "@dzek69/eslint-config-typescript": "^1.1.1", |
| 45 | + "@knodes/typedoc-plugin-pages": "^0.23.4", |
| 46 | + "@types/jest": "^29.5.5", |
| 47 | + "@typescript-eslint/eslint-plugin": "^5.61.0", |
| 48 | + "@typescript-eslint/parser": "^5.61.0", |
45 | 49 | "babel-plugin-module-extension": "^0.1.3",
|
46 |
| - "eslint": "^8.38.0", |
| 50 | + "eslint": "^8.44.0", |
| 51 | + "eslint-plugin-import": "^2.28.1", |
47 | 52 | "fs-extra": "^11.1.1",
|
48 | 53 | "husky": "^8.0.3",
|
49 |
| - "jest": "^29.5.0", |
| 54 | + "jest": "^29.7.0", |
50 | 55 | "must": "^0.13.4",
|
51 |
| - "nodemon": "^2.0.22", |
| 56 | + "nodemon": "^3.0.1", |
| 57 | + "prettier": "^2.8.8", |
52 | 58 | "ts-node": "^10.9.1",
|
53 | 59 | "typedoc": "^0.23.0",
|
54 |
| - "typescript": "^5.0.4", |
55 |
| - "@types/jest": "^29.5.0", |
56 |
| - "eslint-plugin-import": "^2.27.5", |
57 |
| - "@dzek69/eslint-config-import": "^1.2.0", |
58 |
| - "@dzek69/eslint-config-import-typescript": "^1.0.0", |
59 |
| - "@knodes/typedoc-plugin-pages": "^0.23.4", |
60 |
| - "prettier": "^2.8.7" |
| 60 | + "typescript": "^5.2.2", |
| 61 | + "resolve-tspaths": "^0.8.15" |
61 | 62 | },
|
62 | 63 | "husky": {
|
63 | 64 | "hooks": {
|
64 |
| - "pre-push": "yarn prepublishOnly && yarn compile" |
| 65 | + "pre-push": "pnpm run prepublishOnly && pnpm run compile" |
65 | 66 | }
|
66 | 67 | },
|
67 | 68 | "libraryTemplate": {
|
68 |
| - "version": "3.9.1", |
| 69 | + "version": "3.11.2", |
69 | 70 | "language": "typescript",
|
70 | 71 | "fixDefaultForCommonJS": true,
|
71 | 72 | "jsx": false
|
|
0 commit comments