-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 KB
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
{
"name": "excel-to-postgres",
"version": "0.0.0-development",
"description": "Quickly export an Excel Workbook to a Postgres Database",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"start": "ts-node src/main.ts",
"test": "jest",
"commit": "git cz",
"build": "tsc",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Jmurp11/excel-to-postgres.git"
},
"keywords": [
"excel",
"xlsx",
"postgres",
"sql",
"export",
"convert",
"excel-to-postgres",
"exceltopostgres"
],
"author": "jmurp11",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jmurp11/excel-to-postgres/issues"
},
"homepage": "https://github.com/Jmurp11/excel-to-postgres#readme",
"devDependencies": {
"@types/jest": "~29.5.11",
"@types/node": "~20.10.6",
"@types/pg": "~8.10.9",
"@typescript-eslint/eslint-plugin": "~6.18.0",
"@typescript-eslint/parser": "~6.18.0",
"cz-conventional-changelog": "~3.3.0",
"dotenv": "~16.3.1",
"eslint": "~8.56.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-plugin-import": "~2.29.1",
"husky": "~8.0.3",
"jest": "~29.7.0",
"semantic-release": "~22.0.12",
"ts-jest": "~29.1.1",
"ts-node": "~10.2.1",
"ts-node-dev": "~2.0.0",
"typescript": "~5.3.3"
},
"dependencies": {
"pg": "~8.11.3",
"xlsx": "~0.18.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}