-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "@data-fair/catalog-mock",
"description": "A simple mock plugin for the Data Fair catalogs service.",
"version": "0.6.2",
"main": "index.ts",
"type": "module",
"scripts": {
"build-types": "df-build-types ./",
"check-types": "tsc",
"lint": "eslint .",
"prepare": "husky || true",
"test-base": "NODE_ENV=test EVENTS_LOG_LEVEL=alert node --disable-warning=ExperimentalWarning --test-force-exit --test-concurrency=1 --test",
"test-only": "npm run test-base -- --test-only test-it/*.ts",
"test": "npm run test-base test-it/*.ts",
"quality": "npm run lint && npm run build-types && npm run check-types && npm run test && npm audit --omit=dev --audit-level=critical",
"prepublishOnly": "npm run build-types"
},
"files": [
"./lib/**",
"./types/**",
"index.ts"
],
"imports": {
"#types": "./types/index.ts",
"#type/*": "./types/*"
},
"keywords": [
"data-fair-catalogs-plugin"
],
"license": "MIT",
"dependencies": {
"@data-fair/lib-validation": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@data-fair/lib-types-builder": "^1.8.0",
"@data-fair/types-catalogs": "^0.6.0",
"@types/fs-extra": "^11.0.4",
"chalk": "^5.4.1",
"dayjs": "^1.11.13",
"draftlog": "^1.0.13",
"eslint": "^9.25.1",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"neostandard": "^0.12.1",
"typescript": "^5.8.3"
},
"relativeDependencies": {
"@data-fair/types-catalogs": "../../catalogs/types-catalogs"
}
}