-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.73 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
{
"name": "@data-fair/processing-import-api",
"version": "0.3.5",
"description": "Create a data-fair dataset from an API",
"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 ./",
"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-import-api.git"
},
"keywords": [
"data-fair-processings-plugin"
],
"author": "Koumoul <contact@koumoul.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/data-fair/processing-import-api/issues"
},
"homepage": "https://github.com/data-fair/processing-import-api#readme",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@data-fair/lib-common-types": "^1.20.6",
"@data-fair/lib-processing-dev": "^0.3.0",
"@data-fair/lib-types-builder": "^1.7.0",
"@data-fair/lib-utils": "^1.10.2",
"@types/node": "^25.5.0",
"config": "^4.4.1",
"eslint": "^9.26.0",
"husky": "^9.1.7",
"neostandard": "^0.12.1",
"nock": "^14.0.12",
"typescript": "^5.8.3",
"ws": "^8.19.0"
},
"dependencies": {
"axios": "^1.6.7",
"csv-stringify": "^6.6.0",
"form-data": "^4.0.5",
"slugify": "^1.6.6"
},
"files": [
"processing-config-schema.json",
"./lib/**/*"
]
}