forked from middyjs/middy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "middy-monorepo",
"version": "3.3.0",
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda",
"type": "module",
"engines": {
"node": ">=14"
},
"engineStrict": true,
"scripts": {
"prepare": "husky install",
"commit-msg": "commitlint --config commitlint.config.cjs --edit",
"pre-commit": "npm run test:lint",
"install": "lerna bootstrap",
"test": "npm run test:lint && npm run test:packages",
"test:lint": "lint-staged",
"test:lint:ci": "ts-standard",
"test:unit": "cd packages/$PACKAGE && c8 npm run test:unit",
"test:benchmark": "cd packages/$PACKAGE && npm run test:benchmark",
"test:packages": "npm run test:packages:typings && npm run test:packages:unit",
"test:packages:unit": "c8 lerna exec --bail --concurrency 5 npm run test:unit",
"test:packages:benchmark": "lerna exec --bail --concurrency 1 npm run test:benchmark",
"test:packages:typings": "lerna exec --bail --concurrency 5 tsd",
"release:tag": "git tag $npm_package_version && git push --tags",
"lerna:rm": "npm run lerna:rm:node_modules && npm run lerna:rm:lock",
"lerna:rm:lock": "lerna exec -- rm -rf package-lock.json",
"lerna:rm:node_modules": "lerna exec -- rm -rf node_modules",
"lerna:update": "lerna exec --bail --concurrency 5 npm update && npm install",
"lerna:outdated": "lerna exec --concurrency 5 npm outdated",
"lerna:audit": "lerna exec --concurrency 2 npm audit fix",
"lerna:sync": "lerna exec --bail --concurrency 2 npm install && lerna publish --exact --yes --skip-npm --skip-git --repo-version $npm_package_version",
"lerna:publish": "lerna publish --exact --yes --skip-git --repo-version $npm_package_version",
"lerna:publish:next": "lerna publish --exact --yes --skip-git --repo-version $npm_package_version --dist-tag next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/middyjs/middy.git"
},
"keywords": [
"Lambda",
"Middleware",
"Serverless",
"Framework",
"AWS",
"AWS Lambda"
],
"author": {
"name": "Middy contributors",
"url": "https://github.com/middyjs/middy/graphs/contributors"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/middyjs/middy/issues"
},
"homepage": "https://middy.js.org",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.135",
"ava": "^4.0.0",
"benchmark": "^2.1.4",
"c8": "^7.0.0",
"husky": "^8.0.0",
"lerna": "^5.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.0",
"sinon": "^14.0.0",
"ts-standard": "^11.0.0",
"tsd": "^0.22.0"
},
"ts-standard": {
"ignore": [
"website/build/**/*.js"
]
}
}