@tuplo/numberfmt
Version:
Native numeric formatting using a text pattern
67 lines (66 loc) • 1.55 kB
JSON
{
"name": "@tuplo/numberfmt",
"description": "Native numeric formatting using a text pattern",
"version": "1.11.0",
"repository": "git@github.com:tuplo/numberfmt.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"numbers",
"formatting",
"Intl.NumberFormat"
],
"types": "dist/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"exports": {
".": [
{
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./dist/index.mjs"
]
},
"files": [
"dist/index.mjs",
"dist/index.cjs",
"dist/index.d.ts",
"dist/numberfmt.d.ts"
],
"devDependencies": {
"@tuplo/shell": "1.2.0",
"@types/node": "20.2.5",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"@vitest/coverage-c8": "0.31.1",
"esbuild": "0.17.19",
"eslint": "8.41.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"nyc": "15.1.0",
"prettier": "2.8.8",
"tsx": "3.12.7",
"typescript": "5.0.4",
"vitest": "0.31.1",
"zx": "7.2.2"
},
"scripts": {
"build": "tsx sh/build.ts",
"coverage": "tsx sh/coverage.ts",
"format": "prettier --write src sh",
"lint:ts": "tsc --noEmit",
"lint": "eslint src",
"test:ci": "LANG=en-GB vitest run",
"test": "LANG=en-GB vitest --watch"
}
}