-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.82 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
{
"name": "@data-fair/processing-vertvolt",
"version": "1.0.0-alpha.2",
"description": "Process VertVolt xlsx files to generate a dataset.",
"main": "index.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build-types": "export NODE_OPTIONS='--experimental-strip-types' && df-build-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": {
"#config": "./lib/config.ts",
"#types/*": "./types/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/processing-vertvolt.git"
},
"keywords": [
"data-fair-processings-plugin"
],
"author": "Koumoul <contact@koumoul.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-fair/processing-vertvolt/issues"
},
"homepage": "https://github.com/data-fair/processing-vertvolt#readme",
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@data-fair/lib-common-types": "^1.19.10",
"@data-fair/lib-processing-dev": "^0.2.0",
"@data-fair/lib-types-builder": "^1.11.3",
"@data-fair/lib-utils": "^1.9.0",
"@types/fs-extra": "^11.0.4",
"@types/ftp": "^0.3.36",
"@types/node": "^22.10.5",
"@types/ssh2-sftp-client": "^9.0.6",
"config": "^4.4.1",
"debug": "^4.4.0",
"eslint": "^9.26.0",
"husky": "^9.1.7",
"neostandard": "^0.12.1",
"typescript": "^5.8.3"
},
"dependencies": {
"fs-extra": "^11.3.3",
"ftp": "^0.3.10",
"ssh2-sftp-client": "^12.0.1",
"xlsx": "^0.18.5"
},
"files": [
"plugin-config-schema.json",
"processing-config-schema.json",
"./lib/**/*"
]
}