-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "@devmehq/phone-number-validator-js",
"version": "1.3.2",
"description": "Verify phone number, validate format, checking carrier name, geo and timezone infos.",
"keywords": [
"telephone",
"phone",
"number",
"geo",
"geocode",
"location",
"carrier",
"timezone",
"timezones",
"international",
"libphonenumber"
],
"homepage": "https://github.com/devmehq/phone-number-validator-js#readme",
"bugs": {
"url": "https://github.com/devmehq/phone-number-validator-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/devmehq/phone-number-validator-js"
},
"license": "BSL 1.1",
"author": "DEV.ME <support@dev.me> (https://dev.me)",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"resources"
],
"scripts": {
"build": "rm -rf lib && rollup -c --bundleConfigAsCjs",
"preparemetadata": "rm -rf resources && node .scripts/prepare.js && rm -rf resources/libphonenumber",
"prepublishOnly": "yarn build",
"prettier": "prettier --write \\\"src/**/*.ts\\\" \\\"__tests__/**/*.ts\\\"",
"test": "jest",
"watch": "rm -rf lib && rollup -cw"
},
"dependencies": {
"bson": "^6.8.0",
"libphonenumber-js": "^1.11.5"
},
"devDependencies": {
"@types/bson": "^4.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/shelljs": "^0.8.15",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-typescript2": "^0.36.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"packageManager": "yarn@1.22.22+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}