-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "multiple-csv-merge-to-json",
"version": "0.0.7",
"description": "Merge multiple CSV files and output to JSON file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"publish": "npm run test && npm run build && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rebecamurillo/multiple-csv-merge-to-json.git"
},
"keywords": [
"csv",
"merge",
"json",
"multiple"
],
"author": "Rebeca Murillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/rebecamurillo/multiple-csv-merge-to-json/issues"
},
"homepage": "https://github.com/rebecamurillo/multiple-csv-merge-to-json#readme",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.32",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"csvtojson": "^2.0.10",
"fs": "^0.0.1-security"
},
"jest": {
"preset": "ts-jest"
},
"files": [
"/dist"
]
}