-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 2.93 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@sagacify/sqs-handler",
"version": "3.0.2",
"description": "SQS messages handling package",
"main": "build/SQSHandler.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"aws",
"sqs",
"queue",
"message",
"messages",
"stream",
"streams"
],
"author": "@oliviercuyp",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sagacify/sqs-handler.git"
},
"bugs": {
"url": "https://github.com/Sagacify/sqs-handler/issues"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"fix:lint": "eslint --fix .",
"test:lint": "eslint -f stylish 'src/**/*.ts'",
"test:types": "tsc --noEmit",
"test:spec": "env NODE_ENV=test mocha .",
"test:cover": "nyc npm run test:spec",
"test:watch": "env NODE_ENV=test mocha --watch",
"test": "npm run test:lint && npm run test:types && npm run test:cover"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.667.0"
},
"devDependencies": {
"@aws-sdk/client-sqs": "^3.667.0",
"@sagacify/eslint-config": "^1.2.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.11",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"aws-sdk-client-mock": "^4.0.2",
"chai": "^5.1.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"eslintConfig": {
"ignorePatterns": [
"**/build/*.js"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"env": {
"node": true,
"mocha": true
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"semi": true,
"arrowParens": "always"
},
"mocha": {
"require": "tsx",
"exit": true,
"spec": [
"test/**/*.ts"
],
"watch-files": [
"src/**/*.ts",
"test/**/*.ts"
]
},
"nyc": {
"check-coverage": true,
"lines": 80,
"include": [
"src/**/*.ts"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}