-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 750 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 750 Bytes
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
36
{
"name": "gender-detection",
"version": "0.1.0",
"description": "Detect the gender of a person using his/her first name.",
"license": "GPL-3.0",
"main": "index.js",
"keywords": [
"gender",
"sex"
],
"author": "davidemiceli",
"repository": {
"type": "git",
"url": "git+https://github.com/davidemiceli/gender-detection.git"
},
"files": [
"index.js",
"genders"
],
"bugs": {
"url": "https://github.com/davidemiceli/gender-detection/issues"
},
"maintainers": [
"davidemiceli"
],
"homepage": "https://github.com/davidemiceli/gender-detection#readme",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}