|
4 | 4 | "description": "utils for makeomatic mservice for encoding/decoding various token types and storing associated metadata with them",
|
5 | 5 | "main": "./lib/index.js",
|
6 | 6 | "scripts": {
|
7 |
| - "test": "yarn lint && yarn test-unit && yarn test-integration", |
| 7 | + "test": "pnpm lint && pnpm test-unit && pnpm test-integration", |
8 | 8 | "test-unit": "mocha --extensions ts test/unit.ts",
|
9 | 9 | "test-integration": "mdep test run -t ./test/integration.ts",
|
10 | 10 | "lint": "eslint ./src",
|
11 | 11 | "compile": "rimraf ./lib *.tsbuildinfo; tsc --build tsconfig.build.json && copyfiles -u 1 ./src/backends/**/*.lua ./lib",
|
12 |
| - "prepublishOnly": "yarn compile", |
| 12 | + "prepublishOnly": "pnpm compile", |
13 | 13 | "semantic-release": "semantic-release"
|
14 | 14 | },
|
15 | 15 | "repository": {
|
|
33 | 33 | "ioredis": "4.x.x"
|
34 | 34 | },
|
35 | 35 | "engine": {
|
36 |
| - "node": ">= 12.14.0" |
| 36 | + "node": ">= 20.17.0" |
37 | 37 | },
|
38 | 38 | "devDependencies": {
|
39 |
| - "@makeomatic/deploy": "^10.3.1", |
40 |
| - "@types/base64-url": "^2.2.0", |
41 |
| - "@types/bluebird": "^3.5.33", |
42 |
| - "@types/chance": "^1.1.0", |
43 |
| - "@types/get-value": "^3.0.1", |
44 |
| - "@types/glob": "^7.1.3", |
45 |
| - "@types/ioredis": "^4.17.7", |
46 |
| - "@types/is": "^0.0.21", |
47 |
| - "@types/mocha": "^8.0.3", |
48 |
| - "@types/node": "^14.14.6", |
49 |
| - "@types/uuid": "^8.3.0", |
50 |
| - "@typescript-eslint/eslint-plugin": "^4.6.1", |
51 |
| - "@typescript-eslint/parser": "^4.6.1", |
52 |
| - "codecov": "^3.8.1", |
53 |
| - "copyfiles": "^2.4.0", |
54 |
| - "cross-env": "^7.0.2", |
55 |
| - "eslint": "^7.12.1", |
56 |
| - "eslint-config-makeomatic": "^5.0.3", |
57 |
| - "eslint-plugin-import": "^2.22.1", |
58 |
| - "eslint-plugin-mocha": "^8.0.0", |
59 |
| - "eslint-plugin-promise": "^4.2.1", |
60 |
| - "ioredis": "^4.19.2", |
61 |
| - "mocha": "^8.2.1", |
62 |
| - "nyc": "^15.1.0", |
63 |
| - "rimraf": "^3.0.2", |
64 |
| - "ts-node": "^9.0.0", |
65 |
| - "typescript": "^4.0.5" |
| 39 | + "@makeomatic/deploy": "^13.1.0", |
| 40 | + "@types/base64-url": "^2.2.2", |
| 41 | + "@types/chance": "^1.1.6", |
| 42 | + "@types/get-value": "^3.0.5", |
| 43 | + "@types/glob": "^8.1.0", |
| 44 | + "@types/ioredis": "^4.28.10", |
| 45 | + "@types/mocha": "^10.0.9", |
| 46 | + "@types/node": "^22.7.9", |
| 47 | + "@types/uuid": "^10.0.0", |
| 48 | + "@typescript-eslint/eslint-plugin": "^7.18.0", |
| 49 | + "@typescript-eslint/parser": "^7.18.0", |
| 50 | + "copyfiles": "^2.4.1", |
| 51 | + "cross-env": "^7.0.3", |
| 52 | + "eslint": "^8.57.1", |
| 53 | + "eslint-config-makeomatic": "^6.0.0", |
| 54 | + "eslint-plugin-import": "^2.31.0", |
| 55 | + "eslint-plugin-mocha": "^10.5.0", |
| 56 | + "eslint-plugin-promise": "^4.3.1", |
| 57 | + "ioredis": "^4.28.5", |
| 58 | + "mocha": "^10.7.3", |
| 59 | + "rimraf": "^6.0.1", |
| 60 | + "ts-node": "^10.9.2", |
| 61 | + "typescript": "^5.6.3" |
66 | 62 | },
|
67 | 63 | "dependencies": {
|
68 |
| - "base64-url": "^2.3.3", |
69 |
| - "chance": "^1.1.7", |
| 64 | + "chance": "^1.1.12", |
70 | 65 | "get-value": "^3.0.1",
|
71 |
| - "glob": "^7.1.6", |
72 |
| - "is": "^3.3.0", |
73 |
| - "joi": "^17.3.0", |
| 66 | + "glob": "^11.0.0", |
| 67 | + "joi": "^17.13.3", |
74 | 68 | "read-pkg": "^5.2.0",
|
75 |
| - "uuid": "^8.3.1" |
| 69 | + "uuid": "^10.0.0" |
76 | 70 | },
|
77 | 71 | "files": [
|
78 | 72 | "src/",
|
79 | 73 | "lib/",
|
80 | 74 | "bin/"
|
81 |
| - ], |
82 |
| - "husky": { |
83 |
| - "hooks": { |
84 |
| - "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", |
85 |
| - "prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS" |
86 |
| - } |
87 |
| - } |
| 75 | + ] |
88 | 76 | }
|
0 commit comments