forked from simbo/gulp-gray-matter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "gulp-gray-matter",
"version": "3.0.1",
"description": "A gulp plugin for extracting data header from file contents using gray-matter.",
"author": "Simon Lepel <[email protected]> (http://simbo.ninja)",
"main": "index.js",
"keywords": [
"frontmatter",
"front-matter",
"gray-matter",
"gulpplugin",
"gulp",
"data"
],
"scripts": {
"test": "mocha -R spec",
"lint": "eslint ./index.js",
"cover": "istanbul cover ./node_modules/.bin/_mocha -- -R spec",
"watch": "mocha -R spec -w",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simbo/gulp-gray-matter.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/simbo/gulp-gray-matter/issues"
},
"homepage": "https://github.com/simbo/gulp-gray-matter#readme",
"engines": {
"node": ">= 6.0.0"
},
"files": [
"index.js",
"LICENSE",
"README.md"
],
"dependencies": {
"gray-matter": "^4.0.2",
"plugin-error": "^1.0.1",
"merge": "^1.2.0",
"object-path": "^0.11.4",
"through2": "^3.0.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.12.1",
"eslint-config-simbo": "^1.5.0",
"gulp": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^5.2.0",
"stream-assert": "^2.0.3"
}
}