-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
33 lines (33 loc) · 920 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
{
"name": "parse-full-name",
"version": "1.2.3",
"description": "A function that accepts the full name of a person in any format, parses it, and returns its parts { title, first name, middle name, last name, nickname, suffix, [and any parsing errors] }.",
"main": "index.js",
"scripts": {
"test": "mocha test/"
},
"repository": {
"type": "git",
"url": "https://github.com/dschnelldavis/parse-full-name"
},
"keywords": [
"parse",
"parser",
"name",
"full name",
"first name",
"middle name",
"last name",
"nickname"
],
"author": "David Schnell-Davis <[email protected]> (http://github.com/dschnelldavis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dschnelldavis/parse-full-name/issues"
},
"homepage": "https://github.com/dschnelldavis/parse-full-name",
"dependencies": {},
"devDependencies": {
"mocha": "^2.5.0"
}
}