-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "@joblocal/aws-move-queue-messages",
"version": "1.1.0",
"description": "This tool can move queue message from an AWS SQS Queue to an other AWS SQS Queue.",
"main": "src/index.js",
"author": "joblocal GmbH",
"license": "MIT",
"scripts": {
"lint": "eslint . --cache",
"test": "jest",
"test:watch": "yarn test --watch --onlyChanged",
"test:coverage": "yarn test --coverage",
"validate": "npm-run-all --parallel lint test"
},
"pre-push": {
"run": "validate",
"silent": true
},
"bin": {
"aws-move-queue-messages": "./src/index.js"
},
"dependencies": {
"aws-sdk": "^2.855.0",
"clui": "^0.3.6",
"commander": "^2.20.0",
"inquirer": "^6.2.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"pre-push": "^0.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joblocal/aws-move-queue-messages.git"
},
"keywords": [
"aws",
"sqs",
"cli",
"node",
"javascript",
"es6"
],
"bugs": {
"url": "https://github.com/joblocal/aws-move-queue-messages/issues"
},
"homepage": "https://github.com/joblocal/aws-move-queue-messages#readme"
}