-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.1 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
{
"name": "phone-number-timezone",
"version": "1.0.0",
"description": "Returns IANA timezones of phone numbers. (Node.js-only.)",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/cyph/phone-number-timezone.git"
},
"author": "Cyph, Inc. <[email protected]> (https://github.com/cyph)",
"license": "BSD",
"bugs": {
"url": "https://github.com/cyph/phone-number-timezone/issues"
},
"husky": {
"hooks": {
"pre-commit": "npx cyph-pretty-quick --staged"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true
},
"devDependencies": {
"@cyph/prettier": "*",
"@cyph/pretty-quick": "*",
"husky": "*"
},
"dependencies": {
"libphonenumber-geo-carrier": "^1",
"libphonenumber-js": "^1",
"phone-number-to-timezone": "^1"
}
}