-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "arc-plugin-queues-extended",
"version": "0.0.1",
"description": "Architect (arc.codes) serverless framework plugin that creates SQS-based queues and exposes more SQS options above the default architect queue implementation",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/index-test.js",
"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-queues-extended.git"
},
"keywords": [
"serverless",
"arc",
"cloudformation",
"sqs",
"lambda"
],
"author": "Filip Maj",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/filmaj/arc-plugin-queues-extended/issues"
},
"homepage": "https://github.com/filmaj/arc-plugin-queues-extended",
"devDependencies": {
"@architect/eslint-config": "^2.0.0",
"eslint": "^8.0.0",
"jasmine": "^5.0.0"
},
"dependencies": {
"@architect/utils": "^3.0.0"
},
"peerDependencies": {
"@architect/architect": ">=10"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"rules": {
"indent": [
"error",
2
],
"brace-style": "off",
"semi": [
"error",
"always"
]
}
},
"publishConfig": {
"access": "public"
}
}