-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
bower.json
116 lines (116 loc) · 2.61 KB
/
bower.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "gray-matter",
"description": "Parse front-matter from a string or file. Fast, reliable and easy to use. Parses YAML front matter by default, but also has support for YAML, JSON, TOML or Coffee Front-Matter, with options to set custom delimiters. Used by metalsmith, assemble, verb and many other projects.",
"version": "3.1.1",
"homepage": "https://github.com/jonschlinkert/gray-matter",
"authors": [
"Jon Schlinkert (https://github.com/jonschlinkert)"
],
"contributors": [
"(https://github.com/heymind)",
"Andrew Meyer (https://github.com/Ajedi32)",
"Brian Woodward (https://twitter.com/doowb)",
"Caesar Schinas (https://caesarschinas.com)",
"Ian Storm Taylor (http://ianstormtaylor.com)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Osman Nuri Okumuş (http://onokumus.com)",
"Pawel Kadluczka (http://blog.3d-logic.com)",
"Rob Loach (http://robloach.net)",
"Zach Whaley (http://zachwhaleys.website)"
],
"repository": "jonschlinkert/gray-matter",
"bugs": {
"url": "https://github.com/jonschlinkert/gray-matter/issues"
},
"license": "MIT",
"files": [
"gray-matter.d.ts",
"index.js",
"lib"
],
"main": [
"index.js"
],
"dependencies": {
"define-property": "^2.0.2",
"js-yaml": "^3.11.0",
"kind-of": "^6.0.2",
"section-matter": "^1.0.0",
"strip-bom-string": "^1.0.0"
},
"devDependencies": {
"ansi-green": "^0.1.1",
"benchmarked": "^2.0.0",
"coffeescript": "^2.2.3",
"delimiter-regex": "^2.0.0",
"extend-shallow": "^3.0.2",
"front-matter": "^2.3.0",
"gulp-format-md": "^1.0.0",
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"toml": "^2.3.3",
"vinyl": "^2.1.0",
"write": "^1.0.3"
},
"keywords": [
"assemble",
"coffee",
"coffee-script",
"data",
"docs",
"documentation",
"extract",
"extracting",
"front",
"front-matter",
"frontmatter",
"generate",
"generator",
"gh-pages",
"gray",
"javascript",
"jekyll",
"js",
"JSON",
"markdown",
"matter",
"parse",
"parser",
"parsing",
"site",
"static",
"template",
"toml",
"yaml",
"yfm"
],
"typings": "gray-matter.d.ts",
"ignore": [
"actual",
"bower_components",
"fixtures",
"node_modules",
"temp",
"test",
"test.js",
"tmp"
],
"lintDeps": {
"devDependencies": {
"files": {
"patterns": [
"concept.js"
]
}
}
},
"types": "gray-matter.d.ts",
"browser": {
"fs": false
},
"eslintConfig": {
"rules": {
"no-console": 0
}
}
}