-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "talos",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore --ignore-path .eslintignore",
"test": "wsrun --no-prefix -mc test",
"release": "changeset publish",
"wat": "talos put test-resources --endpoint http://db.talos.lndo.site/repositories/tests --api http://foo.bar -u minos -p password"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@tpluscode/eslint-config": "^0.5.0",
"@types/chai": "^5",
"@types/chai-as-promised": "^8.0.1",
"@types/deep-equal-in-any-order": "^1.0.3",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.9",
"@types/node": "^20",
"@types/rdf-dataset-ext": "^1.0.8",
"@types/rdfjs__term-set": "^2.0.9",
"@types/replacestream": "^4.0.4",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@types/sparql-http-client": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"anylogger-debug": "^1.0.3",
"c8": "^10.1.2",
"chai-as-promised": "^8.0.0",
"deep-equal-in-any-order": "^2.0.6",
"eslint-import-resolver-typescript": "^3.6.3",
"husky": "^9.1.6",
"mocha": "^10.7.3",
"rdf-dataset-ext": "^1.1.0",
"sinon-chai": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"wsrun": "^5.2.4"
},
"mocha": {
"extension": "ts",
"loader": "ts-node/esm/transpile-only",
"require": [
"../../../../mocha-setup.js"
],
"recursive": true
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}