-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
37 lines (37 loc) · 882 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
36
37
{
"name": "humanparser",
"version": "2.7.0",
"description": "Parse a human name string into salutation, first name, middle name, last name, suffix. Parse an address into address, city, state, zip",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:chovy/humanparser.git"
},
"keywords": [
"human",
"address",
"name",
"parser",
"parse",
"fullname",
"full name",
"first name",
"last name",
"human name",
"city state zip",
"city",
"state",
"zip"
],
"author": "Anthony Ettinger (chovy)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"minimist": ">=0.2.1",
"mocha": "^10.2.0"
}
}