-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
67 lines (67 loc) · 1.4 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
{
"name": "serverless-plugin-existing-s3",
"version": "2.4.0",
"description": "Attach Lambda events to an existing S3 bucket, for Serverless.com 1.11.0+.",
"main": "index.js",
"homepage": "https://github.com/matt-filion/serverless-external-s3-event",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.4",
"sinon": "^4.4.3"
},
"maintainers": [
{
"name": "Matt Filion",
"email": "matt.filion@gmail.com"
}
],
"files": [
"index.js",
"README.md",
"LICENSE",
"package.json",
"Permissions.js",
"S3.js",
"Transformer.js",
"BucketConfig.js"
],
"contributors": [
{
"name": "Matt Filion",
"email": "matt.filion@gmail.com"
},
{
"name": "Justin Hart",
"email": "npm@onyxraven.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/matt-filion/serverless-external-s3-event"
},
"bugs": {
"url": "https://github.com/matt-filion/serverless-external-s3-event/issues"
},
"author": {
"name": "Matt Filion",
"email": "matt.filion@gmail.com"
},
"private": false,
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jeremyosborne/packagejsonexample/blob/master/LICENSE.txt"
}
],
"keywords": [
"s3",
"event",
"notifications",
"serverless",
"serverless.com"
],
"scripts": {
"test": "mocha spec"
}
}