forked from BBFMedia/serverless-offline
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 4.16 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
{
"name": "serverless-offline",
"version": "3.14.2",
"description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
"main": "src/index.js",
"scripts": {
"test": "mocha test",
"lint": "eslint src/**/*.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/serverless-offline.git"
},
"keywords": [
"Serverless",
"Amazon Web Services",
"AWS",
"Lambda",
"API Gateway"
],
"author": "David Hérault <dherault@gmail.com> (https://github.com/dherault)",
"maintainers": [
"Bilal Soylu (https://github.com/Bilal-S)",
"Leonardo Alifraco (https://github.com/leonardoalifraco)",
"Michael Staub (https://github.com/mikestaub)"
],
"contributors": [
"Adam Sweeting (https://github.com/adamelliottsweeting)",
"Adrien (https://github.com/AdrienGiboire)",
"Al Pal (https://github.com/againer)",
"allenhartwig (https://github.com/allenhartwig)",
"Andre Rabold (https://github.com/arabold)",
"Andrei Popovici (https://github.com/andreipopovici)",
"Anthony Liatsis (https://github.com/aliatsis)",
"Austen (https://github.com/ac360)",
"Ben Cooling (https://github.com/bencooling)",
"Cameron Cooper (https://github.com/cameroncooper)",
"Chris Trevino (https://github.com/darthtrevino)",
"Christoph Gysin (https://github.com/christophgysin)",
"Daniel Parker (https://github.com/rlgod)",
"Dave Sole (https://github.com/dsole)",
"David Bunker (https://github.com/dbunker)",
"demetriusnunes (https://github.com/demetriusnunes)",
"DJCrabhat (https://github.com/djcrabhat)",
"Echo Nolan (https://github.com/enolan)",
"Egor Kislitsyn (https://github.com/minibikini)",
"Elliott Spira (https://github.com/em0ney)",
"Ethan Moistner (https://github.com/emmoistner)",
"Francisco Guimarães (https://github.com/franciscocpg)",
"Gabriel Verdi (https://github.com/ansraliant)",
"Garun Vagidov (https://github.com/garunski)",
"Gert Jansen van Rensburg (https://github.com/gertjvr)",
"Guillaume Carbonneau (https://github.com/guillaume)",
"Jarda Snajdr (https://github.com/jsnajdr)",
"jgilbert01 (https://github.com/jgilbert01)",
"John McKim (https://github.com/johncmckim)",
"Jonas De Kegel (https://github.com/jlsjonas)",
"Joost Farla (https://github.com/joostfarla)",
"Joubert RedRat (https://github.com/joubertredrat)",
"Kaj Wiklund (https://github.com/kajwiklund)",
"Kiryl Yermakou (https://github.com/rma4ok)",
"Leonardo Alifraco (https://github.com/lalifraco-devspark)",
"Luke Chavers (https://github.com/vmadman)",
"Marc Campbell (https://github.com/marccampbell)",
"Mark Tse (https://github.com/neverendingqs)",
"Martin Micunda (https://github.com/martinmicunda)",
"Matt Hodgson (https://github.com/mhodgson)",
"Matt Jonker (https://github.com/msjonker)",
"Norimitsu Yamashita (https://github.com/nori3tsu)",
"Oliv (https://github.com/obearn)",
"Paul Esson (https://github.com/thepont)",
"Piotr Gasiorowski (https://github.com/WooDzu)",
"polaris340 (https://github.com/polaris340)",
"Russell Schick (https://github.com/rschick)",
"Shaun (https://github.com/starsprung)",
"Shine Li (https://github.com/shineli)",
"Stefan Siegl (https://github.com/stesie)",
"Stewart Gleadow (https://github.com/sgleadow)",
"Tuan Minh Huynh (https://github.com/tuanmh)",
"Utku Turunc (https://github.com/utkuturunc)",
"Vasiliy Solovey (https://github.com/miltador)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dherault/serverless-offline/issues"
},
"homepage": "https://github.com/dherault/serverless-offline",
"dependencies": {
"babel-register": "^6.18.0",
"boom": "^4.2.0",
"crypto": "^0.0.3",
"hapi": "14.2.0",
"hapi-cors-headers": "^1.0.0",
"js-string-escape": "^1.0.1",
"jsonpath-plus": "^0.16.0",
"lodash": "^4.17.4",
"velocityjs": "^0.9.3"
},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.16.1",
"eslint-config-nelson": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
}
}