-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "csv-import-validation",
"private": true,
"version": "0.1.2-rc.0",
"main": "dist/index.js",
"description": "Validation library for CSV files against defined schema",
"scripts": {
"test": "jest",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js"
},
"keywords": [
"typescript",
"csv import",
"csv validation",
"csv"
],
"author": "Logic Spark <[email protected]>",
"homepage": "https://logicspark.com",
"url": "https://github.com/logicspark/csv-import-validation",
"repository": {
"type": "git",
"url": "https://github.com/logicspark/csv-import-validation"
},
"bugs": {
"url": "https://github.com/logicspark/csv-import-validation"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.1",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/papaparse": "^5.3.7",
"dayjs": "^1.11.7",
"debug": "^3.2.7",
"exceljs": "^4.3.0",
"fast-csv": "^4.3.6",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"readable-stream": "^3.6.2",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=14.21.0"
},
"workspaces": [
"demo/js/*",
"demo/ts/*"
]
}