UNPKG

tubular-common

Version:

Tubular Common Models and Data Transformer

82 lines 1.81 kB
{ "name": "tubular-common", "version": "7.0.22", "description": "Tubular Common Models and Data Transformer", "main": "dist/index.js", "jest": { "automock": false, "setupFiles": [ "./setupJest.ts", "./test/browserMocks.js" ], "coverageReporters": [ "lcov", "text" ], "moduleFileExtensions": [ "ts", "js" ], "transform": { "^.+\\.(ts|tsx)$": [ "ts-jest", { "diagnostics": false, "tsconfig": "tsconfig.json" } ] }, "testMatch": [ "<rootDir>/test/**/*.spec.ts" ], "coverageThreshold": { "global": { "branches": 60, "functions": 60, "lines": 85, "statements": -155 } } }, "files": [ "dist/**/*", "src/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/unosquare/tubular-common.git" }, "keywords": [ "tubular", "data", "grid" ], "author": "Unosquare", "license": "MIT", "bugs": { "url": "https://github.com/unosquare/tubular-common/issues" }, "homepage": "https://github.com/unosquare/tubular-common#readme", "devDependencies": { "@biomejs/biome": "2.1.4", "@types/jest": "^30.0.0", "jest": "^30.0.5", "jest-environment-jsdom": "^30.0.5", "jest-fetch-mock": "^3.0.3", "ts-jest": "^29.4.1", "typescript": "^5.9.2" }, "dependencies": { "dayjs": "^1.11.13" }, "scripts": { "test": "jest --runInBand", "cest": "jest --collectCoverage --runInBand", "lint": "pnpm biome check src/", "lint:fix": "pnpm biome check --write src/", "build": "tsc", "watch": "tsc -w", "preparepackage": "pnpm build && pnpm copypackage", "copypackage": "npx shx cp package.json dist" } }