-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 895 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
32
33
34
35
36
37
38
39
{
"name": "phoneparser",
"version": "3.0.2",
"description": "A parser for phone numbers.",
"main": "index.js",
"scripts": {
"test": "tape test/**/*.js | tap-spec",
"test_debug": "node --debug-brk node_modules/tape/bin/tape test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyburke/phoneparser.git"
},
"keywords": [
"phone",
"phone numbers",
"numbers",
"parser",
"area code",
"code",
"mobile",
"landline"
],
"author": "Andy Burke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andyburke/phoneparser/issues"
},
"homepage": "https://github.com/andyburke/phoneparser#readme",
"devDependencies": {
"eslint": "^7.11.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
},
"dependencies": {
"countrydata": "^3.0.0",
"extend": "^3.0.2"
}
}