-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 888 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "gender-detection-from-name",
"version": "1.11.1",
"description": "Gender detection from first name",
"main": "index.js",
"scripts": {
"dev": "node index.js",
"lint": "eslint ./",
"test": "nyc mocha",
"coverage": "nyc --reporter=lcov --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavideViolante/gender-detection-from-name.git"
},
"keywords": [
"gender",
"detection",
"guess",
"name",
"first name"
],
"author": "Davide Violante",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavideViolante/gender-detection-from-name/issues"
},
"homepage": "https://github.com/DavideViolante/gender-detection-from-name#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.7.3",
"nyc": "^17.0.0"
}
}