-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
46
47
48
49
50
{
"name": "oniyi-vcard-parser",
"version": "1.0.2",
"description": "A vcard to JSON and back parser",
"license": "MIT",
"author": "Benjamin Kroeger <[email protected]>",
"keywords": [
"oniyi-vcard-parser",
"oniyi",
"vcard",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benkroeger/oniyi-vcard-parser.git"
},
"scripts": {
"format": "prettier-eslint --write \"lib/**/*.js\" \"test/**/*.js\"",
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --fix .",
"test": "ava --verbose",
"coverage": "nyc npm test && nyc report --reporter=html"
},
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.12.1",
"eslint-config-oniyi": "^5.0.2",
"eslint-plugin-ava": "^4.4.0",
"nyc": "^11.3.0",
"prettier-eslint-cli": "^4.4.2"
},
"files": [
"lib/"
],
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/benkroeger/oniyi-vcard-parser/issues"
},
"homepage": "https://github.com/benkroeger/oniyi-vcard-parser#readme",
"directories": {
"test": "test"
}
}