-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@runnerty/executor-postgres",
"version": "3.1.2",
"description": "Runnerty module: postgres executor",
"author": "Runnerty Tech",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint '**/*.js' && prettier --check '**'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runnerty/executor-postgres.git"
},
"keywords": [
"runnerty",
"executor",
"csv",
"excel",
"postgres"
],
"bugs": {
"url": "https://github.com/runnerty/executor-postgres/issues"
},
"homepage": "https://github.com/runnerty/executor-postgres#readme",
"dependencies": {
"@runnerty/module-core": "~3.1.1",
"exceljs": "^4.3.0",
"fast-csv": "^4.3.6",
"JSONStream": "^1.3.5",
"pg": "^8.7.3",
"pg-copy-streams": "^6.0.2",
"pg-query-stream": "^4.2.3"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}