forked from middyjs/middy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.33 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
78
79
80
81
82
83
84
{
"name": "middy-monorepo",
"version": "1.5.0",
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda",
"engines": {
"node": ">=10"
},
"engineStrict": true,
"scripts": {
"install": "lerna bootstrap",
"test": "npm run test:lint && npm run test:packages",
"test:lint": "eslint . --fix",
"test:lint:ci": "eslint .",
"test:packages": "npm run test:packages:typings && npm run test:packages:unit",
"test:packages:unit": "lerna exec --bail --concurrency 2 npm run test:unit",
"test:packages:typings": "lerna exec --bail --concurrency 2 npm run test:typings",
"release:tag": "git tag $npm_package_version && git push --tags",
"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": "Luciano Mammino, Peter Caulfield, Joe Minichino, Domagoj Katavic",
"license": "MIT",
"bugs": {
"url": "https://github.com/middyjs/middy/issues"
},
"homepage": "https://github.com/middyjs/middy#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"aws-sdk": "^2.656.0",
"babel-jest": "^25.3.0",
"babel-preset-env": "^1.6.1",
"es6-promisify": "^6.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lerna": "^3.20.2",
"lint-staged": "^10.1.3",
"regenerator-runtime": "^0.13.5",
"typings-tester": "^0.3.2"
},
"dependencies": {
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"greenkeeper": {
"ignore": [
"aws-sdk"
]
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
]
}
}