forked from jxson/front-matter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"author": "Jason Campbell <[email protected]> (http://twitter.com/jxson)",
"name": "front-matter",
"description": "Extract YAML front matter from a string",
"keywords": [
"yaml",
"front matter",
"meta data"
],
"license": "MIT",
"version": "4.0.2",
"homepage": "https://github.com/jxson/front-matter",
"bugs": "https://github.com/jxson/front-matter/issues",
"repository": {
"type": "git",
"url": "git://github.com/jxson/front-matter.git"
},
"main": "index.js",
"scripts": {
"test": "make test && check-dts"
},
"dependencies": {
"js-yaml": "^3.13.1"
},
"devDependencies": {
"brfs": "^2.0.2",
"check-dts": "^0.3.0",
"coveralls": "^3.0.9",
"istanbul": "^0.4.5",
"standard": "^14.3.4",
"tape": "^4.4.0",
"zuul": "^3.12.0"
},
"files": [
"index.d.ts"
],
"contributors": [
"Jason Campbell <[email protected]> (http://twitter.com/jxson)",
"Jordan Santell <[email protected]> (https://github.com/jsantell)",
"Kai Davenport <[email protected]> (https://github.com/binocarlos)",
"Jean-Philippe Monette <[email protected]> (https://github.com/jpmonette)",
"Marc-André Arseneault <[email protected]> (https://github.com/arsnl)",
"Bret Comnes <[email protected]> (http://bret.io)",
"Peter Bengtsson <[email protected]> (https://github.com/peterbe)"
]
}