|
1 | 1 | { |
2 | | - "name": "@middy/monorepo", |
3 | | - "version": "7.0.0-alpha.3", |
4 | | - "description": "🛵 The stylish Node.js middleware engine for AWS Lambda", |
5 | | - "private": true, |
6 | | - "type": "module", |
7 | | - "engines": { |
8 | | - "node": ">=22" |
9 | | - }, |
10 | | - "engineStrict": true, |
11 | | - "scripts": { |
12 | | - "prepare": "husky", |
13 | | - "preinstall": "npm link --workspaces", |
14 | | - "git:pre-commit": "npm run git:lint-staged && npm run git:test-staged", |
15 | | - "git:commit-msg": "commitlint --config commitlint.config.cjs --edit", |
16 | | - "git:lint-staged": "npm run test:lint", |
17 | | - "git:test-staged": "which node && node -v && node --test ./packages/*", |
18 | | - "lint": "biome check --write --no-errors-on-unmatched", |
19 | | - "test": "npm run test:lint && npm run test:unit && npm run test:types && npm run test:sast && npm run test:perf && npm run test:dast", |
20 | | - "test:lint": "biome check --staged --no-errors-on-unmatched", |
21 | | - "test:unit": "node --test --test-force-exit", |
22 | | - "test:sast": "npm run test:sast:lockfile && npm run test:sast:sandworm && npm run test:sast:semgrep && npm run test:sast:trufflehog", |
23 | | - "test:sast:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https", |
24 | | - "test:sast:sandworm": "sandworm-audit --skip-all --show-tips false", |
25 | | - "test:sast:semgrep": "semgrep scan --config auto", |
26 | | - "test:sast:trufflehog": "trufflehog filesystem --only-verified --log-level=-1 ./", |
27 | | - "test:types": "tstyche", |
28 | | - "test:perf": "node --test ./**/*.perf.js", |
29 | | - "test:dast": "npm run test:dast:fuzz", |
30 | | - "test:dast:fuzz": "node --test ./**/*.fuzz.js", |
31 | | - "test:packages:unit": "node --test --experimental-test-coverage --test-coverage-lines=99 --test-coverage-branches=95 --test-coverage-functions=90", |
32 | | - "test:packages:fuzz": "node --test ./packages/**/*.fuzz.js", |
33 | | - "test:llrt": "cd llrt && npm test", |
34 | | - "rm": "npm run rm:coverage && npm run rm:node_modules && npm run rm:lock", |
35 | | - "rm:lock": "find . -name 'pacakge-lock.json' -type d -prune -exec rm -rf '{}' +", |
36 | | - "rm:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +", |
37 | | - "update": "npm update --workspaces && npm install --workspaces", |
38 | | - "outdated": "npm outdated --workspaces", |
39 | | - "audit": "npm audit fix --workspaces", |
40 | | - "release:sync": "npm version $npm_package_version --workspaces && find ./packages -name \"package.json\" -exec sed -i '' -E \"s#\\\"@middy/(.*)\\\": ([^,]*)#\\\"@middy/\\1\\\": $(npm pkg get version)#g\" {} \\; && npm run rm:node_modules && npm link --workspaces && npm install && npm run lint", |
41 | | - "release:tag": "git tag $npm_package_version" |
42 | | - }, |
43 | | - "repository": { |
44 | | - "type": "git", |
45 | | - "url": "git+https://github.com/middyjs/middy.git" |
46 | | - }, |
47 | | - "keywords": [ |
48 | | - "Lambda", |
49 | | - "Middleware", |
50 | | - "Serverless", |
51 | | - "Framework", |
52 | | - "AWS", |
53 | | - "AWS Lambda" |
54 | | - ], |
55 | | - "author": { |
56 | | - "name": "Middy contributors", |
57 | | - "url": "https://github.com/middyjs/middy/graphs/contributors" |
58 | | - }, |
59 | | - "license": "MIT", |
60 | | - "bugs": { |
61 | | - "url": "https://github.com/middyjs/middy/issues" |
62 | | - }, |
63 | | - "homepage": "https://middy.js.org", |
64 | | - "devDependencies": { |
65 | | - "@biomejs/biome": "^2.0.0", |
66 | | - "@commitlint/cli": "^20.0.0", |
67 | | - "@commitlint/config-conventional": "^20.0.0", |
68 | | - "@tsconfig/node22": "^22.0.0", |
69 | | - "aws-sdk-client-mock": "^4.0.0", |
70 | | - "fast-check": "^4.0.0", |
71 | | - "husky": "^9.0.0", |
72 | | - "tinybench": "^6.0.0", |
73 | | - "tstyche": "^5.0.0", |
74 | | - "typescript": "^5.0.0", |
75 | | - "undici": "^7.0.0" |
76 | | - }, |
77 | | - "devEngines": { |
78 | | - "runtime": { |
79 | | - "name": "node", |
80 | | - "onFail": "error" |
81 | | - }, |
82 | | - "packageManager": { |
83 | | - "name": "npm", |
84 | | - "onFail": "error" |
85 | | - } |
86 | | - }, |
87 | | - "workspaces": [ |
88 | | - "packages/*" |
89 | | - ] |
| 2 | + "name": "@middy/monorepo", |
| 3 | + "version": "7.0.0", |
| 4 | + "description": "🛵 The stylish Node.js middleware engine for AWS Lambda", |
| 5 | + "private": true, |
| 6 | + "type": "module", |
| 7 | + "engines": { |
| 8 | + "node": ">=22" |
| 9 | + }, |
| 10 | + "engineStrict": true, |
| 11 | + "scripts": { |
| 12 | + "prepare": "husky", |
| 13 | + "preinstall": "npm link --workspaces", |
| 14 | + "git:pre-commit": "npm run git:lint-staged && npm run git:test-staged", |
| 15 | + "git:commit-msg": "commitlint --config commitlint.config.cjs --edit", |
| 16 | + "git:lint-staged": "npm run test:lint", |
| 17 | + "git:test-staged": "which node && node -v && node --test ./packages/*", |
| 18 | + "lint": "biome check --write --no-errors-on-unmatched", |
| 19 | + "test": "npm run test:lint && npm run test:unit && npm run test:types && npm run test:sast && npm run test:perf && npm run test:dast", |
| 20 | + "test:lint": "biome check --staged --no-errors-on-unmatched", |
| 21 | + "test:unit": "node --test --test-force-exit", |
| 22 | + "test:sast": "npm run test:sast:lockfile && npm run test:sast:sandworm && npm run test:sast:semgrep && npm run test:sast:trufflehog", |
| 23 | + "test:sast:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https", |
| 24 | + "test:sast:sandworm": "sandworm-audit --skip-all --show-tips false", |
| 25 | + "test:sast:semgrep": "semgrep scan --config auto", |
| 26 | + "test:sast:trufflehog": "trufflehog filesystem --only-verified --log-level=-1 ./", |
| 27 | + "test:types": "tstyche", |
| 28 | + "test:perf": "node --test ./**/*.perf.js", |
| 29 | + "test:dast": "npm run test:dast:fuzz", |
| 30 | + "test:dast:fuzz": "node --test ./**/*.fuzz.js", |
| 31 | + "test:packages:unit": "node --test --experimental-test-coverage --test-coverage-lines=99 --test-coverage-branches=95 --test-coverage-functions=90", |
| 32 | + "test:packages:fuzz": "node --test ./packages/**/*.fuzz.js", |
| 33 | + "test:llrt": "cd llrt && npm test", |
| 34 | + "rm": "npm run rm:coverage && npm run rm:node_modules && npm run rm:lock", |
| 35 | + "rm:lock": "find . -name 'pacakge-lock.json' -type d -prune -exec rm -rf '{}' +", |
| 36 | + "rm:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +", |
| 37 | + "update": "npm update --workspaces && npm install --workspaces", |
| 38 | + "outdated": "npm outdated --workspaces", |
| 39 | + "audit": "npm audit fix --workspaces", |
| 40 | + "release:sync": "npm version $npm_package_version --workspaces && find ./packages -name \"package.json\" -exec sed -i '' -E \"s#\\\"@middy/(.*)\\\": ([^,]*)#\\\"@middy/\\1\\\": $(npm pkg get version)#g\" {} \\; && npm run rm:node_modules && npm link --workspaces && npm install && npm run lint", |
| 41 | + "release:tag": "git tag $npm_package_version" |
| 42 | + }, |
| 43 | + "repository": { |
| 44 | + "type": "git", |
| 45 | + "url": "git+https://github.com/middyjs/middy.git" |
| 46 | + }, |
| 47 | + "keywords": [ |
| 48 | + "Lambda", |
| 49 | + "Middleware", |
| 50 | + "Serverless", |
| 51 | + "Framework", |
| 52 | + "AWS", |
| 53 | + "AWS Lambda" |
| 54 | + ], |
| 55 | + "author": { |
| 56 | + "name": "Middy contributors", |
| 57 | + "url": "https://github.com/middyjs/middy/graphs/contributors" |
| 58 | + }, |
| 59 | + "license": "MIT", |
| 60 | + "bugs": { |
| 61 | + "url": "https://github.com/middyjs/middy/issues" |
| 62 | + }, |
| 63 | + "homepage": "https://middy.js.org", |
| 64 | + "devDependencies": { |
| 65 | + "@biomejs/biome": "^2.0.0", |
| 66 | + "@commitlint/cli": "^20.0.0", |
| 67 | + "@commitlint/config-conventional": "^20.0.0", |
| 68 | + "@tsconfig/node22": "^22.0.0", |
| 69 | + "aws-sdk-client-mock": "^4.0.0", |
| 70 | + "fast-check": "^4.0.0", |
| 71 | + "husky": "^9.0.0", |
| 72 | + "tinybench": "^6.0.0", |
| 73 | + "tstyche": "^5.0.0", |
| 74 | + "typescript": "^5.0.0", |
| 75 | + "undici": "^7.0.0" |
| 76 | + }, |
| 77 | + "devEngines": { |
| 78 | + "runtime": { |
| 79 | + "name": "node", |
| 80 | + "onFail": "error" |
| 81 | + }, |
| 82 | + "packageManager": { |
| 83 | + "name": "npm", |
| 84 | + "onFail": "error" |
| 85 | + } |
| 86 | + }, |
| 87 | + "workspaces": [ |
| 88 | + "packages/*" |
| 89 | + ] |
90 | 90 | } |
0 commit comments