name-to-gender 1.0.2 → 1.0.3
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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/name-to-gender)
|
|
6
6
|
[](https://www.npmjs.com/package/name-to-gender)
|
|
7
7
|
[](https://bundlephobia.com/package/name-to-gender)
|
|
8
|
-
[](https://github.com/michaelcummingsofficial/name-to-gender/blob/main/LICENSE)
|
|
9
|
+
[](https://github.com/michaelcummingsofficial/name-to-gender)
|
|
10
10
|
|
|
11
11
|
`name-to-gender` is a gender detection and gender prediction library that infers gender from a person's first name. Give it a name like `"Adam"` or `"Mary"` and it returns `"male"`, `"female"`, or `"unknown"`, along with a probability you can threshold on. It is data-driven rather than rule-based, ships its dataset offline with the package, and has **zero runtime dependencies**.
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "name-to-gender",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Guess gender from a first name using US Social Security data. Returns a probability and the raw birth counts. TypeScript, ESM + CJS, zero dependencies.",
|
|
5
|
-
"homepage": "https://github.com/
|
|
5
|
+
"homepage": "https://github.com/michaelcummingsofficial/name-to-gender#readme",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs",
|
|
8
8
|
"module": "./dist/index.js",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"author": "Michael Cummings (https://www.michaelcummin.gs)",
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/
|
|
52
|
+
"url": "git+https://github.com/michaelcummingsofficial/name-to-gender.git"
|
|
53
53
|
},
|
|
54
54
|
"bugs": {
|
|
55
|
-
"url": "https://github.com/
|
|
55
|
+
"url": "https://github.com/michaelcummingsofficial/name-to-gender/issues"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
58
|
"dist",
|