UNPKG

mock-table-data

Version:

`mock-table-data`는 JavaScript/TypeScript 환경에서 테이블 형태의 데이터를 조건, 정렬, 페이징 기반으로 필터링하거나 가공할 수 있는 유틸리티 클래스입니다. 테스트용 또는 실제 클라이언트 필터링 용도로 사용할 수 있습니다.

43 lines (42 loc) 1.05 kB
{ "name": "mock-table-data", "version": "2.0.2", "description": "", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://github.com/liamyoon/mock-table-data.git", "scripts": { "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "test": "jest", "test:watch": "jest --watch" }, "keywords": [ "ktnexr", "mock-table-data", "table-data", "crud-table-data", "crud-table" ], "author": "", "license": "ISC", "devDependencies": { "@types/jest": "^30.0.0", "@types/lodash": "^4.17.19", "jest": "^30.0.3", "prettier": "^2.7.1", "ts-jest": "^29.4.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^5.8.3" }, "dependencies": { "lodash": "^4.17.21" } }