-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
31 lines (31 loc) · 957 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
{
"name": "email-to-name",
"version": "2.0.7",
"engines": {
"node": ">=16"
},
"main": "index.js",
"types": "types/index.d.ts",
"description": "A Node.js and web browser compatible script that takes an email address and tries to generate a name.",
"devDependencies": {
"esbuild": "^0.19.8",
"jest": "^29.7.0"
},
"keywords": [],
"author": "Tait Brown <taitbrown@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"build": "esbuild src/email-to-name.js --minify --sourcemap --target=chrome58,firefox57,safari11,edge16 --outfile=dist/index.js && cp types/index.d.ts dist/",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taitems/email-to-name.git"
},
"bugs": {
"url": "https://github.com/taitems/email-to-name/issues"
},
"homepage": "https://github.com/taitems/email-to-name#readme",
"dependencies": {}
}