-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "split-human-name",
"version": "2.0.13",
"description": "Split a person's name into firstName and lastName fields",
"repository": {
"type": "git",
"url": "git+https://github.com/compwright/split-human-name.git"
},
"keywords": [
"humanparse",
"human",
"name",
"split",
"first-name",
"last-name"
],
"author": "Jonathon Hill <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/compwright/split-human-name/issues"
},
"homepage": "https://github.com/compwright/split-human-name#readme",
"engines": {
"node": ">=10"
},
"dependencies": {
"@compwright/namecase": "^2.0.6",
"humanparser": "^2.6.0"
},
"devDependencies": {
"jest": "*",
"parcel": "*",
"semistandard": "*"
},
"main": "./src",
"browser": "dist/split-human-name.min.js",
"scripts": {
"pretest": "semistandard --fix",
"test": "jest"
},
"semistandard": {
"ignore": [
"dist"
]
},
"targets": {
"main": false,
"browser": {
"context": "browser",
"engines": {
"browsers": [
"> 0.25%",
"not dead"
]
},
"includeNodeModules": true,
"optimize": true
}
}
}