-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 922 Bytes
/
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
{
"name": "vcf-to-csv",
"version": "0.0.1",
"description": "This Utility software converts VCF files into an Excel sheet.",
"homepage": "https://gamier.co.uk",
"Author": {
"name": "Junaid Anwar",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"start": "node_modules/.bin/babel-node index.js",
"build": "node_modules/.bin/babel index.js -d bin/",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"fileAssociations": {
"icon": "src"
},
"dependencies": {
"jsonexport": "^2.4.1",
"proton-native": "latest",
"vcard-json": "^0.5.2"
},
"devDependencies": {
"electron-builder": "latest",
"babel-cli": "latest",
"babel-preset-env": "latest",
"babel-preset-stage-0": "latest",
"babel-preset-react": "latest"
},
"build": {
"protonNodeVersion": "current",
"mac": {
"identity": null
}
}
}