-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.04 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "persian-gender-detection",
"version": "2.1.0",
"description": "Persian names gender detector",
"main": "index.js",
"repository": "[email protected]:peymanslh/persian-gender-detection.git",
"author": "Peyman Salehi <[email protected]> (https://peyman.blog)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/peymanslh/persian-gender-detection/issues"
},
"contributors": [
{
"name": "Peyman Salehi",
"email": "[email protected]"
},
{
"name": "Ali MasudianPour",
"email": "[email protected]"
}
],
"keywords": [
"gender",
"persian"
],
"devDependencies": {
"mocha": "^10.2.0",
"prettier": "2.8.4"
},
"scripts": {
"pretty": "npx prettier --write '{./*.js,**/*.json,./**/*.test.js}'",
"test": "mocha"
},
"prettier": {
"useTabs": false,
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"semi": true,
"bracketSpacing": true,
"filepath": "{./*.js,**/*.json,./**/*.test.js}"
}
}