-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@ts-dev-tools/core",
"version": "1.9.2",
"description": "TS dev tools Core",
"keywords": [
"linter",
"prettier",
"git-hooks"
],
"author": "ESCEMI <contact@escemi.com>",
"homepage": "https://github.com/escemi-tech/ts-dev-tools",
"license": "MIT",
"bin": {
"ts-dev-tools": "dist/bin.js"
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/escemi-tech/ts-dev-tools.git"
},
"scripts": {
"start": "npm link && tsc -w",
"stop": "npm 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": "eslint \"src/**/*.{ts,tsx}\""
},
"bugs": {
"url": "https://github.com/escemi-tech/ts-dev-tools/issues"
},
"dependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.0.3",
"@eslint/js": "^9.25.0",
"@types/jest": "^29.5.2",
"@types/node": "^24.0.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jest": "^29.0.1",
"import-sort-style-module": "^6.0.0",
"jest": "^30.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.3.3",
"prettier-plugin-import-sort": "^0.0.7",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"devDependencies": {
"ts-node": "^10.9.1"
},
"prettier": {
"semi": true,
"printWidth": 100,
"trailingComma": "es5"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
},
"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"
]
}
}