-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.18 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
{
"name": "worker-pool-aws-sdk",
"version": "0.1.0",
"description": "Simple pool of workers to make API calls using the AWS SDK, while leveraging Node.js Worker threads.",
"private": false,
"main": "dist/index.js",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npx tsc",
"prepack": "npm run build",
"lint": "npx eslint --ext .ts .",
"lint:fix": "npx eslint --fix --ext .ts .",
"test": "npx jest"
},
"engines": {
"node": ">=12.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/org-formation/worker-pool-aws-sdk.git"
},
"author": "org-formation",
"license": "MIT",
"bugs": {
"url": "https://github.com/org-formation/worker-pool-aws-sdk/issues"
},
"homepage": "https://github.com/org-formation/worker-pool-aws-sdk#readme",
"dependencies": {
"piscina": "^2.0.0",
"serialize-error": "^7.0.1"
},
"devDependencies": {
"@jurijzahn8019/aws-promise-jest-mock": "^2.2.0",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"aws-sdk": "^2.712.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"aws-sdk": "^2.712.0"
},
"peerDependenciesMeta": {
"aws-sdk": {
"optional": true
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 70,
"statements": 80
}
},
"collectCoverage": true
},
"eslintConfig": {
"env": {
"jest": true,
"node": true
},
"ignorePatterns": [
"*.d.ts",
"*.generated.ts"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"import",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
"plugin:prettier/recommended"
],
"rules": {
"semi": [
"error",
"always"
],
"no-unused-vars": "off"
}
},
"prettier": {
"parser": "typescript",
"singleQuote": true,
"tabWidth": 4,
"printWidth": 120,
"trailingComma": "es5",
"endOfLine": "lf"
}
}