-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "arc-plugin-s3-image-bucket",
"version": "1.1.3",
"description": "Architect (arc.codes) serverless framework plugin that creates an S3 bucket that users can upload to directly, with optional Lambda triggers",
"main": "index.js",
"scripts": {
"lint": "eslint",
"test:unit": "jasmine --config=test/jasmine.json",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filmaj/arc-plugin-s3-image-bucket.git"
},
"keywords": [
"serverless",
"arc",
"cloudformation",
"s3",
"lambda"
],
"author": "Filip Maj",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/filmaj/arc-plugin-s3-image-bucket/issues"
},
"homepage": "https://github.com/filmaj/arc-plugin-s3-image-bucket/issues",
"devDependencies": {
"@architect/eslint-config": "^1.0.0",
"@architect/inventory": "^1.3.3",
"@architect/package": "^6.2.1",
"eslint": "^7.19.0",
"fs-extra": "^9.1.0",
"jasmine": "^3.6.4"
},
"dependencies": {
"@architect/utils": "^2.0.5",
"s3rver": "3.6.1"
},
"peerDependencies": {
"@architect/architect": ">=8.6.0 <10"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"rules": {
"indent": [
"error",
2
],
"brace-style": "off",
"semi": [
"error",
"always"
]
}
},
"publishConfig": {
"access": "public"
}
}