UNPKG

dev-utils-plus

Version:

Type-safe utility functions for JavaScript/TypeScript: string, array, object, date, validation, crypto, format, math

81 lines (80 loc) 1.85 kB
{ "name": "dev-utils-plus", "version": "1.0.2", "description": "Type-safe utility functions for JavaScript/TypeScript: string, array, object, date, validation, crypto, format, math", "main": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js" } }, "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "clean": "rimraf dist", "dev": "tsc --watch" }, "repository": { "type": "git", "url": "git+https://github.com/Showshin/dev-utils-plus.git" }, "keywords": [ "utilities", "utility", "utils", "helpers", "toolkit", "typescript", "type-safe", "javascript", "node", "browser", "web-development", "helper-functions", "string-utils", "array-utils", "object-utils", "date-utils", "validation", "crypto", "formatting", "math-utils", "lodash alternative" ], "author": "Your Name <your.email@example.com>", "license": "MIT", "bugs": { "url": "https://github.com/Showshin/dev-utils-plus/issues" }, "homepage": "https://github.com/Showshin/dev-utils-plus", "publishConfig": { "access": "public" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "engines": { "node": ">=16.0.0" }, "files": [ "dist", "README.md", "LICENSE" ] }