-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "@data-fair/processing-transform-csv",
"version": "0.6.2",
"description": "Transform a CSV file and create or update a data-fair dataset.",
"main": "index.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepare": "husky || true",
"build-types": "export NODE_OPTIONS='--experimental-strip-types' && df-build-types ./config && df-build-types ./types",
"test-base": "NODE_ENV=test node --experimental-strip-types --test-force-exit --test-concurrency=1 --test --test-reporter=spec --test-reporter-destination=stdout",
"test": "npm run test-base test-it/*.ts"
},
"imports": {
"#types/*": "./types/*"
},
"author": "",
"license": "AGPL-3.0-only",
"keywords": [
"data-fair-processings-plugin"
],
"dependencies": {
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"form-data": "^4.0.4",
"fs-extra": "^11.2.0",
"proj4": "^2.20.9",
"pump": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@data-fair/lib-common-types": "^1.21.0",
"@data-fair/lib-processing-dev": "^0.3.0",
"@data-fair/lib-types-builder": "^1.14.0",
"@data-fair/lib-utils": "^1.11.0",
"@types/fs-extra": "^11.0.4",
"@types/proj4": "^2.5.6",
"@types/pump": "^1.1.3",
"axios": "^1.7.9",
"config": "^4.4.1",
"debug": "^4.4.0",
"eslint": "^9.26.0",
"husky": "^9.1.7",
"neostandard": "^0.12.1",
"typescript": "^5.8.3",
"ws": "^8.19.0"
},
"files": [
"processing-config-schema.json",
"./lib/**/*"
]
}