-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "alcaeus-monorepo",
"private": true,
"scripts": {
"prepare": "husky install",
"test": "c8 wsrun -mc test",
"docs": "docsify serve docs",
"lint": "eslint . --ext .ts --quiet",
"release": "changeset publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@rdfjs/parser-jsonld": "^2.1.0",
"@rdfjs/parser-n3": "^2.0.1",
"@zazuko/env": "^2.0.4",
"@tpluscode/eslint-config": "0.4.5",
"@tpluscode/rdf-string": "^1.1.3",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/clownface": "^2.0.7",
"@types/isomorphic-fetch": "0.0.35",
"@types/mocha": "^10.0.1",
"@types/readable-stream": "^4.0.10",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@zazuko/prefixes": "^2.2.0",
"c8": "^9.1.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"docsify-cli": "^4.4.3",
"eslint-import-resolver-typescript": "^3.6.1",
"husky": "^8.0.3",
"isomorphic-form-data": "^2.0.0",
"json-server": "^0.16.3",
"jsonld": "^8.2.0",
"lint-staged": "^11.0.0",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"node-fetch": "^3.3.1",
"npm-run-all": "^4.1.5",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"string-to-stream": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"whatwg-fetch": "^3.0.0",
"wsrun": "^5.2.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --quiet --fix --ignore-path .eslintignore"
]
},
"c8": {
"all": true,
"exclude": [
"docs",
"coverage",
"**/test/**"
],
"reporter": [
"lcovonly",
"text",
"html"
]
}
}