forked from kelseykm/vcard4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "vcard4",
"version": "3.1.2",
"description": "An RFC 6350 compliant JavaScript library for generating and parsing version 4.0 vCards. Can also generate RFC 6351 compliant XML vCards and RFC 7095 compliant jCards. TypeScript type declarations are provided.",
"type": "module",
"main": "./lib/umd/index.js",
"module": "./lib/esm/index.js",
"sideEffects": false,
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/umd/index.js"
},
"types": "./lib/esm/index.d.d.ts",
"scripts": {
"test": "mocha --recursive",
"build": "rm -r dist/ lib/esm lib/umd/index* && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kelseykm/vcard4.git"
},
"keywords": [
"vcard",
"vcard4",
"vcf",
"vcf4"
],
"author": "Kelsey Mwongeli <kelseykm.git@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kelseykm/vcard4/issues"
},
"homepage": "https://kelseykm.github.io/vcard4/",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-terser": "^7.0.2"
}
}