forked from joshfraser/JavaScript-Name-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "javascript-name-parser",
"version": "1.0.0",
"description": "JavaScript code to split names into their respective components (first, last, etc)",
"main": "dist/name-parser.js",
"types": "dist/name-parser.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc -d",
"install": "yarn build",
"verify": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshfraser/JavaScript-Name-Parser.git"
},
"author": "joshfraser",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/joshfraser/JavaScript-Name-Parser/issues"
},
"homepage": "https://github.com/joshfraser/JavaScript-Name-Parser#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/parser": "5.43.0",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"ts-node": "10.9.1"
},
"dependencies": {
"@types/node": "20.16.5",
"typescript": "5.6.3"
}
}