UNPKG

uno-js

Version:

JS/TS common used functions, zero dependencies

72 lines 1.64 kB
{ "name": "uno-js", "version": "3.127.29", "description": "JS/TS common used functions, zero dependencies", "main": "dist/index.js", "jest": { "coverageReporters": [ "lcov", "text" ], "moduleFileExtensions": [ "ts", "js" ], "transform": { "^.+\\.(ts|tsx)$": [ "ts-jest", { "diagnostics": false, "tsconfig": "tsconfig.json" } ] }, "testMatch": [ "<rootDir>/test/**/*.spec.ts" ], "coverageThreshold": { "global": { "branches": 74, "functions": 85, "lines": 90, "statements": -80 } } }, "repository": { "type": "git", "url": "git+https://github.com/unosquare/uno-js.git" }, "keywords": [ "Javascript", "functions", "JS", "csv", "typescript" ], "author": "Unosquare", "license": "MIT", "bugs": { "url": "https://github.com/unosquare/uno-js/issues" }, "homepage": "https://github.com/unosquare/uno-js#readme", "devDependencies": { "@biomejs/biome": "2.1.4", "@types/jest": "^30.0.0", "jest": "^30.0.5", "jest-environment-jsdom": "^30.0.5", "ts-jest": "^29.4.1", "typescript": "^5.9.2" }, "scripts": { "test": "jest --runInBand", "cest": "jest --collectCoverage --runInBand", "lint": "pnpm biome check ./src", "lint:fix": "pnpm biome check --write ./src", "lint:test": "pnpm biome check --write ./test", "build": "tsc", "watch": "tsc -w", "preparepackage": "npm run build && npm run copypackage", "copypackage": "npx shx cp package.json dist" } }