forked from adamayres/gulp-wrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.66 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "gulp-wrap",
"version": "0.13.0",
"description": "A gulp plugin to wrap the stream contents with a template.",
"repository": "adamayres/gulp-wrap",
"author": {
"name": "Adam Ayres",
"email": "[email protected]",
"url": "https://github.com/adamayres"
},
"contributors": [
{
"name": "Shinnosuke Watanabe",
"email": "[email protected]",
"url": "https://github.com/shinnn"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/adamayres/gulp-wrap/blob/master/LICENSE"
}
],
"files": [
"index.js"
],
"scripts": {
"pretest": "jscs *.js test/test.js && eslint *.js test/test.js",
"test": "_mocha",
"coverage": "istanbul cover _mocha",
"coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"
},
"keywords": [
"gulpplugin",
"wrap",
"template",
"lodash",
"consolidate",
"gulp"
],
"dependencies": {
"consolidate": "^0.14.1",
"es6-promise": "^3.1.2",
"fs-readfile-promise": "^2.0.1",
"gulp-util": "^3.0.3",
"js-yaml": "^3.2.6",
"lodash": "^4.11.1",
"node.extend": "^1.1.2",
"through2": "^2.0.1",
"tryit": "^1.0.1",
"vinyl-bufferstream": "^1.0.1"
},
"devDependencies": {
"eslint": "^2.9.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.3",
"istanbul-coveralls": "^1.0.1",
"jscs": "^3.0.3",
"mocha": "^2.1.0",
"simple-bufferstream": "1.0.0",
"vinyl": "^1.1.1"
},
"engines": {
"node": ">=0.10",
"npm": ">=1.4.3"
},
"jscsConfig": {
"preset": "google",
"maximumLineLength": 98,
"requireBlocksOnNewline": true,
"validateLineBreaks": "LF"
}
}