forked from middyjs/middy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.65 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
85
86
87
88
89
90
91
{
"name": "middy",
"version": "0.23.0",
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda",
"main": "./index.js",
"files": [
"src",
"index.js",
"index.d.ts",
"middlewares.js",
"middlewares.d.ts",
"!__tests__"
],
"types": "./index.d.ts",
"scripts": {
"test:lint": "eslint --ignore-pattern='node_modules/' --ignore-pattern='coverage/' --ignore-pattern='docs/' .",
"test:typings": "typings-tester --config tsconfig.json index.d.ts middlewares.d.ts src/__tests__/*.types.ts src/**/__tests__/*types.ts",
"test:unit": "jest --verbose --coverage",
"test:unit:watch": "jest --verbose --coverage --watch",
"test": "npm run test:lint && npm run test:unit && npm run test:typings",
"build:readme": "jsdoc2md --global-index-format grouped --template README.md.hb src/* > README.md",
"build:docs": "jsdoc --readme README.md --package package.json --destination docs src",
"build": "npm run build:docs && npm run build:readme",
"release:tag": "git tag $npm_package_version && git push --tags",
"coverage:submit": "codecov"
},
"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": {
"@types/jest": "^24.0.5",
"@types/node": "^11.9.4",
"aws-sdk": "^2.404.0",
"babel-jest": "^24.1.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.2.0",
"eslint": "^5.14.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.0",
"jest": "^24.1.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"marked": "^0.6.0",
"regenerator-runtime": "^0.13.1",
"typescript": "^3.3.3",
"typings-tester": "^0.3.2"
},
"dependencies": {
"@types/aws-lambda": "^8.10.19",
"@types/http-errors": "^1.6.1",
"ajv": "^6.9.1",
"ajv-i18n": "^3.4.0",
"ajv-keywords": "^3.4.0",
"content-type": "^1.0.4",
"http-errors": "^1.7.1",
"json-mask": "^0.3.8",
"negotiator": "^0.6.1",
"once": "^1.4.0",
"qs": "^6.6.0",
"querystring": "^0.2.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}