forked from fatlama/async-sqs-tasks-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "@fatlama/async-sqs-tasks",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github.com/fatlama/async-sqs-tasks-js",
"author": "Fat Llama",
"license": "MIT",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo .eslintcache",
"format": "prettier --parser typescript --write src/**/*.ts",
"lint": "tsc --noEmit && eslint --cache --ext .ts src",
"release": "yarn clean && yarn build && yarn test && yarn lint",
"test": "jest"
},
"dependencies": {
"aws-sdk": "^2.482.0",
"sqs-consumer": "^5.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@fatlama/eslint-config-base": "^1.1.0",
"@fatlama/eslint-config-typescript": "^1.1.0",
"@types/jest": "^24.0.13",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"aws-sdk-mock": "^4.4.0",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^8.0.2",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"standard": "^12.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.ts"
],
"transform": {
".ts$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}