-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "@octabytes/format-phone",
"version": "1.1.0",
"description": "Convert phone number into human readable format",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"exports": {
".": "./build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octabytes/format-phone.git"
},
"keywords": [
"format-phone",
"phone",
"format"
],
"author": "OctaByte",
"license": "MIT",
"bugs": {
"url": "https://github.com/octabytes/format-phone/issues"
},
"homepage": "https://github.com/octabytes/format-phone#readme",
"dependencies": {
"lodash.find": "^4.6.0",
"lodash.head": "^4.0.1",
"lodash.memoize": "^4.1.2",
"lodash.reduce": "^4.6.0",
"lodash.startswith": "^4.2.1",
"lodash.tail": "^4.1.1",
"lodash.trim": "^4.5.1"
},
"devDependencies": {
"@types/lodash.find": "^4.6.7",
"@types/lodash.head": "^4.0.7",
"@types/lodash.memoize": "^4.1.7",
"@types/lodash.reduce": "^4.6.7",
"@types/lodash.startswith": "^4.2.7",
"@types/lodash.tail": "^4.1.7",
"@types/lodash.trim": "^4.5.7",
"ts-node-dev": "^2.0.0"
}
}