@visulima/humanizer 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -65
package/README.md CHANGED
@@ -979,7 +979,7 @@ If you would like to help take a look at the [list of issues](https://github.com
979
979
  The visulima humanizer is open-sourced software licensed under the [MIT][license-url]
980
980
 
981
981
  [typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
982
- [typescript-url]: "typescript"
982
+ [typescript-url]: https://www.typescriptlang.org/ "TypeScript" "typescript"
983
983
  [license-image]: https://img.shields.io/npm/l/@visulima/humanizer?color=blueviolet&style=for-the-badge
984
984
  [license-url]: LICENSE.md "license"
985
985
  [npm-image]: https://img.shields.io/npm/v/@visulima/humanizer/latest.svg?style=for-the-badge&logo=npm
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/humanizer",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Humanizer is a library for humanizing data in a human-readable form.",
5
5
  "keywords": [
6
6
  "visulima",
@@ -95,74 +95,11 @@
95
95
  "files": [
96
96
  "dist"
97
97
  ],
98
- "devDependencies": {
99
- "@anolilab/eslint-config": "^15.0.3",
100
- "@anolilab/prettier-config": "^5.0.14",
101
- "@anolilab/semantic-release-pnpm": "^1.1.6",
102
- "@anolilab/semantic-release-preset": "^9.0.3",
103
- "@arethetypeswrong/cli": "^0.17.2",
104
- "@babel/core": "^7.26.0",
105
- "@rushstack/eslint-plugin-security": "^0.8.3",
106
- "@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
107
- "@types/ms": "^0.7.34",
108
- "@types/node": "18.19.15",
109
- "@visulima/packem": "1.10.7",
110
- "@visulima/path": "1.3.3",
111
- "@vitest/coverage-v8": "^2.1.8",
112
- "@vitest/ui": "^2.1.8",
113
- "conventional-changelog-conventionalcommits": "8.0.0",
114
- "cross-env": "^7.0.3",
115
- "csv-parse": "^5.6.0",
116
- "esbuild": "0.24.2",
117
- "eslint": "8.57.0",
118
- "eslint-plugin-deprecation": "^3.0.0",
119
- "eslint-plugin-etc": "^2.0.3",
120
- "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
121
- "eslint-plugin-mdx": "^3.1.5",
122
- "eslint-plugin-vitest": "^0.4.1",
123
- "eslint-plugin-vitest-globals": "^1.5.0",
124
- "ms": "^2.1.3",
125
- "prettier": "^3.4.2",
126
- "rimraf": "6.0.1",
127
- "secretlint": "9.0.0",
128
- "semantic-release": "24.2.1",
129
- "typescript": "5.7.3",
130
- "vitest": "^2.1.8"
131
- },
132
98
  "engines": {
133
- "node": ">=18.* <=23.*"
99
+ "node": ">=18.0.0 <=23.x"
134
100
  },
135
101
  "publishConfig": {
136
102
  "access": "public",
137
103
  "provenance": true
138
- },
139
- "anolilab": {
140
- "eslint-config": {
141
- "plugin": {
142
- "tsdoc": false
143
- },
144
- "warn_on_unsupported_typescript_version": false,
145
- "info_on_disabling_jsx_react_rule": false,
146
- "info_on_disabling_prettier_conflict_rule": false,
147
- "info_on_disabling_jsonc_sort_keys_rule": false,
148
- "info_on_disabling_etc_no_deprecated": false
149
- }
150
- },
151
- "scripts": {
152
- "build": "cross-env NODE_ENV=development packem build",
153
- "build:prod": "cross-env NODE_ENV=production packem build",
154
- "clean": "rimraf node_modules dist .eslintcache",
155
- "dev": "pnpm run build --watch",
156
- "lint:attw": "attw --pack",
157
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
158
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
159
- "lint:package-json": "publint --strict",
160
- "lint:prettier": "prettier --config=.prettierrc.cjs --check .",
161
- "lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
162
- "lint:types": "tsc --noEmit",
163
- "test": "vitest run",
164
- "test:coverage": "vitest run --coverage",
165
- "test:ui": "vitest --ui --coverage.enabled=true",
166
- "test:watch": "vitest"
167
104
  }
168
105
  }