-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 798 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 798 Bytes
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
{
"name": "janus",
"private": true,
"license": "MIT",
"repository": "jhatler/janus",
"engines": {
"node": ">=18.0.0"
},
"//": [
"tests break with minimatch error when @typescript-eslint updated beyond ~6.15",
"eslint ^9 is required @typescript-eslint@~6.15.0 to work"
],
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@typescript-eslint/eslint-plugin": "~6.15.0",
"@typescript-eslint/parser": "~6.15.0",
"eslint": "~8.56.0",
"eslint-plugin-jsonc": "~2.16.0",
"prettier": "~3.1.0",
"typescript": "~5.2.0"
},
"workspaces": [
"packages/*"
],
"version": "0.1.5",
"scripts": {},
"mocha": {
"loader": [
"ts-node/esm"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
}
}