@ts-dev-tools/core
Version:
TS dev tools Core
93 lines (92 loc) • 2.32 kB
JSON
{
"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": "^22.14.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jest": "^28.8.0",
"import-sort-style-module": "^6.0.0",
"jest": "^29.5.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"
]
},
"gitHead": "5ca47313d030a41f7a0191f97516e920232851d2"
}