forked from mortie23/csv-to-sql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "@clement-herve/csv-to-sql",
"version": "0.0.3-alpha",
"description": "Create a SQL table from CSV using Node.js",
"main": "out/src/index.js",
"type": "module",
"scripts": {
"build:watch": "npx tsc --watch -b tsconfig.json",
"build:prod": "npx tsc -b tsconfig.prod.json --declaration",
"tests": "jest",
"tests:watch": "jest --onlyChanged --coverage --watch"
},
"bin": {
"csv2sql": "out/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clementherve/csv2sql.git"
},
"author": "Clément Hervé",
"license": "MIT",
"dependencies": {
"argparse": "^2.0.1",
"chalk": "^5.3.0",
"csvtojson": "^2.0.10"
},
"devDependencies": {
"@types/argparse": "^2.0.16",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"types": "./out/src/index.d.ts",
"bugs": {
"url": "https://github.com/clementherve/csv2sql/issues"
},
"homepage": "https://github.com/clementherve/csv2sql#readme",
"keywords": [
"csv",
"sql",
"transform"
]
}