-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
51
52
53
54
55
56
57
58
59
{
"name": "fastmatter",
"version": "2.1.1",
"description": "A fast frontmatter parser. Supports both string and stream inputs.",
"author": "Lim Yuan Qing",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yuanqing/fastmatter"
},
"dependencies": {
"js-yaml": "^3.13.0",
"split": "^1.0.1",
"stream-combiner": "^0.2.2",
"through2": "^3.0.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"concat-stream": "^2.0.0",
"front-matter": "^3.0.1",
"glob": "^7.1.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"nyc": "^13.3.0",
"prettier-standard": "^9.1.1",
"rimraf": "^2.6.3",
"standard": "^12.0.1",
"tape": "^4.10.1",
"yaml-front-matter": "^4.0.0"
},
"scripts": {
"benchmark": "node benchmark/index.js",
"clean": "rimraf '*.log' .nyc_output coverage",
"coverage": "yarn clean && nyc --reporter=html --reporter=lcov --reporter=text npm test",
"fix": "prettier-standard index.js 'benchmark/**/*.js' 'example/**/*.js'",
"lint": "standard index.js 'benchmark/**/*.js' 'example/**/*.js'",
"test": "tape 'test/*.js'"
},
"lint-staged": {
"*.js": [
"standard",
"git add"
]
},
"files": [
"index.js"
],
"keywords": [
"document",
"front-matter",
"frontmatter",
"markdown",
"parser",
"static",
"stream",
"text",
"yaml"
]
}