-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "format-phone",
"version": "0.0.6",
"title": "Format Phone",
"description": "Convert text to international friendly phone number format",
"homepage": "https://github.com/fbatroni/format-phone",
"author": {
"name": "Fritz G. Batroni",
"email": "[email protected]",
"url": "https://fritzbatroni.wordpress.com/"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"phone",
"phone format",
"phone numbers",
"format",
"format phone",
"international",
"e-164"
],
"devDependencies": {
"assert": "^1.3.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"change-case": "^2.3.1",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"del": "^2.2.0",
"eslint-config-xo-space": "^0.7.0",
"gulp": "^3.9.0",
"gulp-cached": "^1.1.0",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^1.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-nsp": "^2.3.1",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-run-sequence": "^0.3.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"vinyl-source-stream": "^1.1.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "fbatroni/format-phone",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "MIT",
"dependencies": {
"google-libphonenumber": "^1.0.15",
"lodash": "^4.6.1"
}
}