-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.18 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
73
74
75
76
77
78
79
80
81
{
"name": "clinic-bug",
"version": "0.1.0",
"description": "Minimal reproduction project for bug in clinic.js",
"type": "commonjs",
"license": "UNLICENSED",
"private": true,
"homepage": "https://github.com/valeneiko/clinic-bug#readme",
"bugs": "https://github.com/valeneiko/clinic-bug/issues",
"repository": {
"type": "git",
"url": "https://github.com/valeneiko/clinic-bug.git"
},
"author": {
"name": "Valentinas Janeiko",
"url": "https://www.linkedin.com/in/valentinas-janeiko"
},
"main": "./dist/index.js",
"files": [
"./dist"
],
"scripts": {
"build": "swc -C exclude=.*/__tests__/.*\\.ts --delete-dir-on-start --out-dir dist ./src",
"typecheck": "tsc --project tsconfig.json --noEmit --pretty",
"test": "TZ=utc jest",
"lint:eslint": "eslint --cache ./src --ext ts,js,json",
"lint:filesystem": "ls-lint",
"tsnode": "ts-node",
"tsnodedev": "ts-node-dev -T"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@jest/types": "29.5.0",
"@ls-lint/ls-lint": "1.11.2",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.42",
"@swc/jest": "0.2.24",
"@types/node": "18.15.10",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"clinic": "12.1.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.19.0",
"jest": "29.5.0",
"jest-junit": "15.0.0",
"prettier": "2.8.7",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "5.0.2"
},
"engines": {
"node": ">=18"
},
"os": [
"darwin",
"win32",
"linux"
],
"pnpm": {
"patchedDependencies": {
"ts-node@10.9.1": "patches/ts-node@10.9.1.patch"
},
"overrides": {
"d3-color@<3.1.0": ">=3.1.0",
"got@<11.8.5": ">=11.8.5"
}
},
"overrides": {
"d3-color": ">=3.1.0",
"got": ">=11.8.5"
}
}