-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@ts-dev-tools/react",
"version": "1.10.2",
"description": "TS dev tools for React",
"keywords": [
"linter",
"prettier",
"git-hooks"
],
"author": "ESCEMI <contact@escemi.com>",
"homepage": "https://github.com/escemi-tech/ts-dev-tools",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"/dist"
],
"bin": {
"ts-dev-tools": "./node_modules/.bin/ts-dev-tools"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/escemi-tech/ts-dev-tools.git"
},
"scripts": {
"start": "pnpm link && tsc -w",
"stop": "pnpm unlink",
"build": "rimraf dist && tsc",
"jest": "jest --detectOpenHandles --forceExit",
"test": "npm run jest -- --maxWorkers=50%",
"test:unit": "npm run test -- --testPathPattern \".+spec\\.ts\"",
"test:e2e": "npm run test -- --testPathPattern \".+e2e\\.spec\\.ts\"",
"test:coverage": "npm run test -- --coverage",
"lint": "biome lint src",
"lint:fix": "biome check --write src",
"lint:ci": "biome check src"
},
"bugs": {
"url": "https://github.com/escemi-tech/ts-dev-tools/issues"
},
"dependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@ts-dev-tools/core": "^1.12.2",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"jest-environment-jsdom": "^30.4.1",
"react-test-renderer": "^19.2.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/src/**/__tests__/**/*.[jt]s?(x)",
"**/src/**/?(*.)+(spec|test)?(.*).+(ts|tsx|js)"
],
"collectCoverageFrom": [
"**/src/**/*.[jt]s?(x)"
],
"reporters": [
"default",
"github-actions"
]
}
}