-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 984 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
{
"name": "jcard-to-vcard",
"version": "0.2.0",
"description": "A jCard to vCard converter with both a CLI and a programmatic module interface.",
"keywords": [
"CLI",
"converter",
"jCard",
"vCard",
"JSON"
],
"license": "MIT",
"author": "James Benner <[email protected]>",
"main": "lib/index.js",
"bin": {
"jcard-to-vcard": "./cli.js"
},
"files": [
"lib/"
],
"scripts": {
"lint": "eslint {lib,test} *.js",
"test": "gulp && mocha"
},
"dependencies": {
"@radioactivehamster/date-time": "^0.1.2",
"collapse-date-time": "^0.1.2",
"escape-vcard-property-value": "^0.1.0",
"get-json-basename": "^0.1.0",
"is-json-file": "^0.2.0",
"is-vcard-date-time-type": "^0.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.11.1",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"gulp-micro": "^2.0.0",
"mocha": "^5.2.0"
},
"engines": {
"node": "^6.2.2 || >=8"
}
}