-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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": "@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": "^3",
"husky": "^9.1.6",
"lint-staged": "^16.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@tpluscode/eslint-config": "^0.6",
"@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-plugin-sparqlc": "^0.1.1",
"tsx": "^4.19.3",
"typescript": "^5.5.4"
},
"workspaces": [
"packages/*",
"labs/*",
"example"
],
"c8": {
"all": true,
"reporters": [
"lcovonly",
"text-summary"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}