@fibery/pluralize 1.0.0 → 1.0.2

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.
package/package.json CHANGED
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "name": "@fibery/pluralize",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
- "scripts": {
7
- "prepare": "pnpm build",
8
- "build": "rm -rf lib && pnpm exec tsc --project tsconfig.build.json",
9
- "test": "jest",
10
- "lint": "eslint ."
11
- },
6
+ "files": [
7
+ "/lib"
8
+ ],
12
9
  "main": "./lib/src/pluralize.js",
13
10
  "types": "./lib/src/pluralize.d.ts",
14
11
  "exports": {
@@ -21,12 +18,12 @@
21
18
  ".": "./src/pluralize.ts"
22
19
  },
23
20
  "devDependencies": {
24
- "@fibery/babel-preset": "workspace:*",
25
- "@fibery/eslint-config": "workspace:*",
26
- "@types/jest": "catalog:",
27
- "jest": "catalog:",
28
- "jest-junit": "catalog:",
29
- "typescript": "catalog:"
21
+ "@types/jest": "30.0.0",
22
+ "jest": "30.2.0",
23
+ "jest-junit": "16.0.0",
24
+ "typescript": "5.9.3",
25
+ "@fibery/babel-preset": "7.4.1",
26
+ "@fibery/eslint-config": "8.6.2"
30
27
  },
31
28
  "jest": {
32
29
  "testEnvironment": "jsdom",
@@ -65,5 +62,10 @@
65
62
  }
66
63
  ]
67
64
  }
65
+ },
66
+ "scripts": {
67
+ "build": "rm -rf lib && pnpm exec tsc --project tsconfig.build.json",
68
+ "test": "jest",
69
+ "lint": "eslint ."
68
70
  }
69
- }
71
+ }
package/.babelrc DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "presets": ["@fibery/babel-preset/typescript"]
3
- }
package/.eslintignore DELETED
@@ -1,2 +0,0 @@
1
- /node_modules
2
- /lib
package/.eslintrc DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "@fibery/eslint-config"
3
- }