UNPKG

1.7 kBJSONView Raw
1{
2 "name": "gulp-wrap",
3 "version": "0.12.0",
4 "description": "A gulp plugin to wrap the stream contents with a template.",
5 "repository": "adamayres/gulp-wrap",
6 "author": {
7 "name": "Adam Ayres",
8 "email": "magicaj@gmail.com",
9 "url": "https://github.com/adamayres"
10 },
11 "contributors": [
12 {
13 "name": "Shinnosuke Watanabe",
14 "email": "snnskwtnb@gmail.com",
15 "url": "https://github.com/shinnn"
16 }
17 ],
18 "licenses": [
19 {
20 "type": "MIT",
21 "url": "https://github.com/adamayres/gulp-wrap/blob/master/LICENSE"
22 }
23 ],
24 "files": [
25 "index.js"
26 ],
27 "scripts": {
28 "pretest": "jscs *.js test/test.js && eslint *.js test/test.js",
29 "test": "_mocha",
30 "coverage": "istanbul cover _mocha",
31 "coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"
32 },
33 "keywords": [
34 "gulpplugin",
35 "wrap",
36 "template",
37 "lodash",
38 "consolidate",
39 "gulp"
40 ],
41 "dependencies": {
42 "consolidate": "^0.14.1",
43 "es6-promise": "^3.1.2",
44 "fs-readfile-promise": "^2.0.1",
45 "gulp-util": "^3.0.3",
46 "js-yaml": "^3.2.6",
47 "lodash": "^4.11.1",
48 "node.extend": "^1.1.2",
49 "through2": "^2.0.1",
50 "tryit": "^1.0.1",
51 "vinyl-bufferstream": "^1.0.1"
52 },
53 "devDependencies": {
54 "eslint": "^2.9.0",
55 "expect.js": "^0.3.1",
56 "istanbul": "^0.4.3",
57 "istanbul-coveralls": "^1.0.1",
58 "jscs": "^3.0.3",
59 "mocha": "^2.1.0",
60 "simple-bufferstream": "1.0.0",
61 "vinyl": "^1.1.1"
62 },
63 "engines": {
64 "node": ">=0.10",
65 "npm": ">=1.4.3"
66 },
67 "jscsConfig": {
68 "preset": "google",
69 "maximumLineLength": 98,
70 "requireBlocksOnNewline": true,
71 "validateLineBreaks": "LF"
72 }
73}