-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.68 KB
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
68
69
{
"name": "vcftelextractor",
"version": "2.0.0",
"description": "A robust, spec-compliant module to extract contacts and telephone numbers from vCard (.vcf) files, supporting streams, string inputs, and phone number normalization.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/browser.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": {
"import": "./dist/browser.mjs",
"require": "./dist/browser.js"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"test": "npm run build && mocha -r ts-node/register \"src/**/*.test.ts\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Balanced02/vcfTelExtractor.git"
},
"keywords": [
"javascript",
"typescript",
"vcf",
"vcard",
"phone",
"extractor",
"parser",
"libphonenumber",
"node",
"isomorphic"
],
"author": "Balanced02",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/Balanced02/vcfTelExtractor/issues"
},
"homepage": "https://github.com/Balanced02/vcfTelExtractor#readme",
"dependencies": {
"libphonenumber-js": "^1.11.4"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.3",
"@types/sinon": "^10.0.20",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3",
"sinon": "^16.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}