-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "gulp-data",
"version": "1.3.1",
"description":
"Generate a data object from a variety of sources: json, front-matter, databases, promises, anything... and set it to the file object for other plugins to consume.",
"keywords": ["gulpplugin", "data", "json", "gulp"],
"author": {
"name": "Colyn Brown",
"email": "[email protected]",
"url": "https://github.com/colynb"
},
"contributors": [
{
"name": "Izaak Schroeder",
"email": "[email protected]",
"url": "http://www.github.com/izaakschroeder"
}
],
"repository": "colynb/gulp-data",
"files": ["index.js"],
"scripts": {
"pretest": "jshint *.js test/*.js",
"test": "istanbul test _mocha --report html -- test/*.js"
},
"dependencies": {
"plugin-error": "^0.1.2",
"through2": "^2.0.0",
"util-extend": "^1.0.1"
},
"devDependencies": {
"coveralls": "*",
"istanbul": "*",
"jshint": "^2.6.0",
"mocha": "*",
"mocha-lcov-reporter": "*",
"q": "^1.0.1",
"should": "^7.1.1",
"vinyl": "^1.1.0"
},
"engines": {
"node": ">=0.9.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}