-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.36 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
60
61
{
"name": "gulp-data-contents",
"description": "Gulp plugin that replaces the contents of a file with the contents of another file using the filepath specified on the 'contents' property in front-matter. Customizable, useful for generating scaffolding or defining placeholder files.",
"version": "1.1.0",
"homepage": "https://github.com/jonschlinkert/gulp-data-contents",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/gulp-data-contents",
"bugs": {
"url": "https://github.com/jonschlinkert/gulp-data-contents/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"expand-tilde": "^2.0.2",
"file-is-binary": "^1.0.0",
"get-value": "^2.0.6",
"through2": "^2.0.3"
},
"devDependencies": {
"mocha": "^3.4.2",
"vinyl": "^2.1.0",
"gulp-format-md": "^1.0.0"
},
"keywords": [
"contents",
"data",
"gulp",
"gulpplugin"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": []
},
"reflinks": [
"assemble",
"electron",
"gray-matter",
"metalsmith"
]
}
}