forked from middyjs/middy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.39 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
{
"name": "middy-monorepo",
"version": "2.5.1",
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda",
"type": "commonjs",
"engines": {
"node": ">=12"
},
"engineStrict": true,
"scripts": {
"install": "lerna bootstrap",
"pre-commit": "lint-staged",
"test": "npm run test:lint && npm run test:packages",
"test:style": "prettier --write --loglevel=warn --no-semi --single-quote --trailing-comma none \"./**/*.js\"",
"test:lint": "ts-standard --fix",
"test:lint:ci": "ts-standard",
"test:unit": "cd packages/$PACKAGE && npm run test:unit",
"test:packages": "npm run test:packages:typings && npm run test:packages:unit",
"test:packages:unit": "lerna exec --bail --concurrency 5 npm run test:unit",
"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",
"lerna:outdated": "lerna exec --concurrency 2 npm outdated",
"lerna:audit": "lerna exec --concurrency 2 npm audit fix",
"lerna:sync": "lerna exec --bail --concurrency 2 npm install && lerna publish --yes --skip-npm --skip-git --repo-version $npm_package_version",
"lerna:publish": "lerna publish --yes --skip-git --repo-version $npm_package_version"
},
"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": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"ava": "^3.15.0",
"c8": "^7.6.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"rewire": "^5.0.0",
"sinon": "^11.1.1",
"ts-standard": "^10.0.0",
"tsd": "^0.17.0",
"typescript": "^4.2.3"
}
}