-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
59
{
"name": "@zazuko/kopflos",
"description": "RDF-based web APIs",
"private": true,
"type": "module",
"scripts": {
"prepare": "npm run --ws --if-present prepare; husky",
"lint": "eslint . --quiet --ignore-path .gitignore",
"test": "npm run --ws --if-present test",
"release": "changeset publish"
},
"author": "Zazuko GmbH",
"license": "MIT",
"dependencies": {
"@zazuko/env-node": "^2.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@tpluscode/eslint-config": "^0.5",
"@types/chai": "^5",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.7",
"@types/node": "^20",
"@types/readable-stream": "^4.0.15",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"anylogger-console": "^1.0.0",
"c8": "^10.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"mocha": "^10.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"workspaces": [
"packages/*",
"labs/*",
"example"
],
"mocha": {
"extensions": [
"ts"
],
"loader": "ts-node/esm"
},
"c8": {
"all": true,
"reporters": [
"lcovonly",
"text-summary"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}