@tevari/helpers
Version:
Collection of various small helpers for javascript and typescript based projects
54 lines • 1.3 kB
JSON
{
"name": "@tevari/helpers",
"version": "2.0.9",
"description": "Collection of various small helpers for javascript and typescript based projects",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/halbehers/tevari"
},
"keywords": [
"helpers",
"typescript",
"arrays",
"dates",
"functions",
"indexSignatures",
"jsons",
"numbers",
"promises",
"reflexions",
"strings",
"styles",
"trees",
"uids"
],
"author": "Sebastien Halbeher",
"license": "MIT",
"dependencies": {
"chroma-js": "^2.4.2",
"moment": "^2.30.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@types/chroma-js": "^2.4.4",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "jest --watch",
"test:ci": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit",
"docs": "typedoc index.ts",
"release": "pnpm run build && changeset publish"
}
}