forked from dherault/serverless-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.28 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"dedicatedTo": "Blue, a great migrating bird.",
"name": "serverless-offline",
"version": "11.3.0",
"description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
"license": "MIT",
"exports": {
".": "./src/index.js",
"./lambda": "./src/lambda/index.js"
},
"type": "module",
"scripts": {
"format": "eslint . --fix",
"lint": "eslint .",
"lint:updated": "pipe-git-updated --ext=js -- eslint",
"list-contributors": "echo 'clone https://github.com/mgechev/github-contributors-list.git first, then run npm install' && cd ../github-contributors-list && node bin/githubcontrib --owner dherault --repo serverless-offline --sortBy contributions --showlogin true --sortOrder desc > contributors.md",
"prepare": "husky install",
"prepare-release": "standard-version && prettier --write CHANGELOG.md",
"prepublishOnly": "npm run lint",
"prettier": "prettier --check .",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettify:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
"test": "mocha --require ./tests/mochaHooks.cjs",
"test:cov": "NODE_OPTIONS='--experimental-loader @istanbuljs/esm-loader-hook' nyc --reporter=html npm test",
"old-test:jest": "npm run build && jest --verbose --silent --runInBand",
"old-test:cov": "npm run build && jest --coverage --silent --runInBand --collectCoverageFrom=src/**/*.js",
"old-test:log": "npm run build && jest --verbose",
"old-test:noBuild": "jest --verbose --runInBand --bail",
"old-test:unit": "jest --verbose --silent --runInBand --config jest.config.units.js",
"old-test:watch": "SKIP_SETUP=true jest --verbose --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/serverless-offline.git"
},
"bugs": {
"url": "https://github.com/dherault/serverless-offline/issues"
},
"homepage": "https://github.com/dherault/serverless-offline",
"keywords": [
"serverless",
"serverless framework",
"serverless local",
"serverless offline",
"serverless plugin",
"aws",
"amazon web services",
"api gateway",
"http",
"lambda",
"schedule",
"websocket"
],
"author": "David Hérault <[email protected]> (https://github.com/dherault)",
"engines": {
"node": ">=14.18.0"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"section": "Maintenance Improvements"
}
]
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.204.0",
"@hapi/boom": "^10.0.0",
"@hapi/h2o2": "^10.0.0",
"@hapi/hapi": "^21.0.0",
"@serverless/utils": "^6.8.2",
"boxen": "^7.0.0",
"chalk": "^5.1.2",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"is-wsl": "^2.2.0",
"java-invoke-local": "0.0.6",
"jose": "^4.10.4",
"js-string-escape": "^1.0.1",
"jsonpath-plus": "^7.2.0",
"jsonschema": "^1.4.1",
"jszip": "^3.10.1",
"luxon": "^3.1.0",
"node-fetch": "^3.2.10",
"node-schedule": "^2.1.0",
"object.hasown": "^1.1.2",
"p-memoize": "^7.1.1",
"p-retry": "^5.1.1",
"velocityjs": "^2.0.6",
"ws": "^8.11.0"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"archiver": "^5.3.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"git-list-updated": "^1.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"serverless": "^3.24.1",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"serverless": "^3.2.0"
}
}