-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 1.72 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
{
"name": "move-sqs",
"version": "1.0.7",
"description": "Move all SQS messages from one queue to another, with an ability to modify the message",
"engines": {
"node": "^8.10"
},
"main": "src/move-sqs.js",
"scripts": {
"test": "jest --silent --coverage",
"coveralls": "jest --silent --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint --cache --fix src/ test/"
},
"bin": {
"move-sqs": "src/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/seppevs/move-sqs.git"
},
"preferGlobal": true,
"keywords": [
"aws",
"amazon",
"sqs",
"move",
"mv",
"cli",
"messages"
],
"author": "Sebastian Van Sande",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.662.0",
"change-case": "^4.1.1",
"deepmerge": "^4.2.2",
"meow": "^6.1.0",
"p-limit": "^2.3.0",
"p-whilst": "^2.1.0"
},
"devDependencies": {
"coveralls": "^3.0.14",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"jest-mock-aws": "^1.1.0"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"node_modules/",
"test/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "all"
}
}