-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.11 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"emoji-regex": "^9.0.0",
"tlds": "^1.253.0"
},
"description": "Extracts email address from an arbitrary text input.",
"devDependencies": {
"ava": "^6.1.3",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-canonical": "^43.0.13",
"semantic-release": "^24.0.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">6"
},
"keywords": [
"date",
"extract",
"moment",
"parse"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "extract-email-address",
"repository": {
"type": "git",
"url": "https://github.com/gajus/extract-email-address"
},
"scripts": {
"build": "del-cli ./dist && tsc",
"lint": "eslint ./src ./test && flow",
"test": "NODE_ENV=test ava --verbose --serial"
},
"version": "3.0.1"
}