UNPKG

1.62 kBJSONView Raw
1{
2 "name": "gulp-streamify",
3 "description": "Wrap old plugins to support streams.",
4 "version": "1.0.2",
5 "homepage": "https://github.com/nfroidure/gulp-streamify",
6 "author": {
7 "name": "Nicolas Froidure",
8 "url": "http://www.insertafter.com/blog.html"
9 },
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/nfroidure/gulp-streamify.git"
13 },
14 "bugs": {
15 "url": "https://github.com/nfroidure/gulp-streamify/issues"
16 },
17 "licenses": [
18 {
19 "type": "MIT",
20 "url": "https://github.com/nfroidure/gulp-streamify/blob/master/LICENSE"
21 }
22 ],
23 "main": "src/index.js",
24 "engines": {
25 "node": ">= 0.10.0"
26 },
27 "scripts": {
28 "test": "mocha tests/*.mocha.js",
29 "coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
30 "cover": "istanbul cover --report html _mocha -- tests/*.mocha.js -R spec -t 5000",
31 "trinita": "npm-check-updates -u && npm test && git commit package.json -m \"Dependencies update\" && git push",
32 "cli": "env NPM_RUN_CLI=1",
33 "lint": "eslint **/*.js",
34 "prepublish": "npm test && npm run lint"
35 },
36 "keywords": [
37 "gulpplugin",
38 "gulp",
39 "gulp-plugin",
40 "stream",
41 "wrapper"
42 ],
43 "devDependencies": {
44 "coveralls": "~2.11.4",
45 "eslint": "^1.3.1",
46 "eslint-config-simplifield": "^1.1.0",
47 "gulp-util": "~3.0.6",
48 "istanbul": "~0.3.19",
49 "mocha": "~2.3.1",
50 "mocha-lcov-reporter": "0.0.2",
51 "sf-lint": "^1.0.2",
52 "streamtest": "^1.2.1"
53 },
54 "dependencies": {
55 "plexer": "1.0.1"
56 }
57}