forked from jasperla/node-vcard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 715 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 715 Bytes
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
{
"name": "vcard",
"version": "0.1.0",
"description": "parse vCard into JSON",
"homepage": "http://github.com/jasperla/node-vcard",
"author": {
"name": "Jasper Lievisse Adriaanse",
"email": "jasper@humppa.nl"
},
"license": "MIT/X11",
"keywords": [
"vcard",
"vcf",
"vCrd",
"json"
],
"dependencies": {
"underscore": "*"
},
"engines": {
"node": ">= 0.6.0"
},
"devDependencies": {
"assert-plus": "*",
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-jasmine-node": "~0.1.0"
},
"main": "vcard.js",
"bin": "./bin/vcard-to-json.js",
"repository": {
"type": "git",
"url": "git://github.com/jasperla/node-vcard.git"
}
}