forked from joshfraser/JavaScript-Name-Parser
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 744 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 744 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
37
{
"name": "humanname",
"version": "0.2.2",
"description": "A human name parser for nodejs. Parses names an split them up into parts",
"author": {
"name": "Christoph Hartmann",
"email": "chris@lollyrock.com"
},
"licenses": [
{
"type": "Apache2"
}
],
"repository": {
"type": "git",
"url": "git://github.com/chris-rock/node-humanname.git"
},
"bugs": {
"url": "http://github.com/chris-rock/node-humanname/issues"
},
"dependencies": {},
"devDependencies": {
"grunt-contrib-jshint": "~0.10.0",
"grunt-mocha-test": "~0.10.2"
},
"scripts": {
"test": "grunt test"
},
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"human name",
"ldap",
"parser"
]
}