-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "phone-number-extractor",
"description": "Extract phone numbers from arbitrary text strings",
"version": "1.1.0",
"main": "index.js",
"files": [
"index.js",
"/lib",
"/test"
],
"engines": {
"node": ">=6.4.0",
"npm": ">=3.0.0"
},
"author": "Christian Rich <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "1.4.2",
"bluebird": "^3.4.7",
"google-libphonenumber": "^2.0.7",
"lodash": "^3.10.1"
},
"devDependencies": {
"mocha": "latest"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChristianRich/phone-number-extractor.git"
},
"keywords": [
"phone number extract",
"phone number extracter",
"extract",
"extractor",
"extracter",
"phone",
"phone numbers",
"phone parser",
"scraper",
"phone scraper",
"get phone numbers"
],
"bugs": {
"url": "https://github.com/ChristianRich/phone-number-extractor/issues"
},
"homepage": "https://github.com/ChristianRich/phone-number-extractor#readme"
}