forked from remind101/humanparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 943 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
38
39
40
{
"name": "humanparser",
"version": "1.1.1",
"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",
"test:jest": "jest"
},
"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": {
"underscore": "~1.6.0"
},
"devDependencies": {
"chai": "~1.9.1",
"jest": "~26.6.3",
"mocha": "~1.19.0"
}
}