UNPKG

2.77 kBJSONView Raw
1{
2 "name": "gray-matter",
3 "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.",
4 "version": "3.1.0",
5 "homepage": "https://github.com/jonschlinkert/gray-matter",
6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7 "contributors": [
8 "Andrew Meyer (https://github.com/Ajedi32)",
9 "Brian Woodward (https://twitter.com/doowb)",
10 "Caesar Schinas (https://caesarschinas.com)",
11 "Ian Storm Taylor (http://ianstormtaylor.com)",
12 "Jon Schlinkert (http://twitter.com/jonschlinkert)",
13 "Osman Nuri Okumuş (http://onokumus.com)",
14 "Pawel Kadluczka (http://blog.3d-logic.com)",
15 "Rob Loach (http://robloach.net)",
16 "(https://github.com/heymind)",
17 "Zach Whaley (http://zachwhaleys.website)"
18 ],
19 "repository": "jonschlinkert/gray-matter",
20 "bugs": {
21 "url": "https://github.com/jonschlinkert/gray-matter/issues"
22 },
23 "license": "MIT",
24 "files": [
25 "gray-matter.d.ts",
26 "index.js",
27 "lib"
28 ],
29 "main": "index.js",
30 "engines": {
31 "node": ">=0.10.0"
32 },
33 "scripts": {
34 "test": "mocha"
35 },
36 "browser": {
37 "fs": false
38 },
39 "dependencies": {
40 "extend-shallow": "^2.0.1",
41 "js-yaml": "^3.10.0",
42 "kind-of": "^5.0.2",
43 "strip-bom-string": "^1.0.0"
44 },
45 "devDependencies": {
46 "ansi-magenta": "^0.1.1",
47 "benchmarked": "^2.0.0",
48 "coffee-script": "^1.12.7",
49 "delimiter-regex": "^2.0.0",
50 "front-matter": "^2.2.0",
51 "gulp-format-md": "^1.0.0",
52 "minimist": "^1.2.0",
53 "mocha": "^4.0.0",
54 "toml": "^2.3.3",
55 "vinyl": "^2.1.0",
56 "write": "^1.0.3"
57 },
58 "keywords": [
59 "assemble",
60 "coffee",
61 "coffee-script",
62 "data",
63 "docs",
64 "documentation",
65 "extract",
66 "extracting",
67 "front",
68 "front-matter",
69 "frontmatter",
70 "generate",
71 "generator",
72 "gh-pages",
73 "gray",
74 "javascript",
75 "jekyll",
76 "js",
77 "JSON",
78 "markdown",
79 "matter",
80 "parse",
81 "parser",
82 "parsing",
83 "site",
84 "static",
85 "template",
86 "toml",
87 "yaml",
88 "yfm"
89 ],
90 "typings": "gray-matter.d.ts",
91 "verb": {
92 "toc": false,
93 "layout": "default",
94 "tasks": [
95 "readme"
96 ],
97 "plugins": [
98 "gulp-format-md"
99 ],
100 "helpers": {
101 "examples": "./examples/helper.js"
102 },
103 "lint": {
104 "reflinks": true
105 },
106 "related": {
107 "list": [
108 "assemble",
109 "metalsmith",
110 "verb"
111 ]
112 },
113 "reflinks": [
114 "coffe-script",
115 "generate",
116 "js-yaml",
117 "toml",
118 "update"
119 ]
120 }
121}