forked from jhermsmeier/node-vcf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 966 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
39
40
41
42
43
44
45
46
47
{
"name": "vcf",
"version": "2.0.0",
"description": "Parse and construct vCards, jCards",
"license": "MIT",
"keywords": [
"vcard",
"hcard",
"jcard",
"vcf"
],
"main": "lib/vcard.js",
"author": {
"name": "Jonas Hermsmeier",
"email": "jhermsmeier@gmail.com",
"url": "https://jhermsmeier.de"
},
"dependencies": {
"camelcase": "~4.1.0",
"foldline": "~1.0.0"
},
"devDependencies": {
"matcha": "~0.7.0",
"mocha": "^3.4.2"
},
"testling": {
"harness": "mocha-tdd",
"files": "test/*.js",
"browsers": [
"ie/10..latest",
"chrome/latest",
"firefox/latest"
]
},
"homepage": "https://github.com/jhermsmeier/node-vcf",
"repository": {
"type": "git",
"url": "https://github.com/jhermsmeier/node-vcf.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-vcf/issues"
},
"scripts": {
"test": "mocha --ui tdd",
"benchmark": "matcha"
}
}