From d1291f67551c58168af43698a359cb5ddfd266b0 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 3 Nov 2016 01:33:53 +0100 Subject: node_modules --- .../node_modules/clone-stats/LICENSE.md | 21 ++++ .../node_modules/clone-stats/README.md | 17 +++ .../node_modules/clone-stats/index.js | 13 +++ .../node_modules/clone-stats/package.json | 31 ++++++ .../node_modules/clone-stats/test.js | 36 +++++++ .../node_modules/replace-ext/.npmignore | 6 ++ .../node_modules/replace-ext/.travis.yml | 8 ++ .../node_modules/replace-ext/LICENSE | 20 ++++ .../node_modules/replace-ext/README.md | 44 ++++++++ .../node_modules/replace-ext/index.js | 9 ++ .../node_modules/replace-ext/package.json | 35 +++++++ .../node_modules/replace-ext/test/main.js | 51 +++++++++ .../node_modules/vinyl/package.json | 112 +++----------------- node_modules/gulp-sourcemaps/package.json | 115 +++++---------------- 14 files changed, 331 insertions(+), 187 deletions(-) create mode 100644 node_modules/gulp-sourcemaps/node_modules/clone-stats/LICENSE.md create mode 100644 node_modules/gulp-sourcemaps/node_modules/clone-stats/README.md create mode 100644 node_modules/gulp-sourcemaps/node_modules/clone-stats/index.js create mode 100644 node_modules/gulp-sourcemaps/node_modules/clone-stats/package.json create mode 100644 node_modules/gulp-sourcemaps/node_modules/clone-stats/test.js create mode 100644 node_modules/gulp-sourcemaps/node_modules/replace-ext/.npmignore create mode 100644 node_modules/gulp-sourcemaps/node_modules/replace-ext/.travis.yml create mode 100755 node_modules/gulp-sourcemaps/node_modules/replace-ext/LICENSE create mode 100644 node_modules/gulp-sourcemaps/node_modules/replace-ext/README.md create mode 100644 node_modules/gulp-sourcemaps/node_modules/replace-ext/index.js create mode 100644 node_modules/gulp-sourcemaps/node_modules/replace-ext/package.json create mode 100644 node_modules/gulp-sourcemaps/node_modules/replace-ext/test/main.js (limited to 'node_modules/gulp-sourcemaps') diff --git a/node_modules/gulp-sourcemaps/node_modules/clone-stats/LICENSE.md b/node_modules/gulp-sourcemaps/node_modules/clone-stats/LICENSE.md new file mode 100644 index 000000000..146cb32a7 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/clone-stats/LICENSE.md @@ -0,0 +1,21 @@ +## The MIT License (MIT) ## + +Copyright (c) 2014 Hugh Kennedy + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/gulp-sourcemaps/node_modules/clone-stats/README.md b/node_modules/gulp-sourcemaps/node_modules/clone-stats/README.md new file mode 100644 index 000000000..8b12b6fa5 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/clone-stats/README.md @@ -0,0 +1,17 @@ +# clone-stats [![Flattr this!](https://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=hughskennedy&url=http://github.com/hughsk/clone-stats&title=clone-stats&description=hughsk/clone-stats%20on%20GitHub&language=en_GB&tags=flattr,github,javascript&category=software)[![experimental](http://hughsk.github.io/stability-badges/dist/experimental.svg)](http://github.com/hughsk/stability-badges) # + +Safely clone node's +[`fs.Stats`](http://nodejs.org/api/fs.html#fs_class_fs_stats) instances without +losing their class methods, i.e. `stat.isDirectory()` and co. + +## Usage ## + +[![clone-stats](https://nodei.co/npm/clone-stats.png?mini=true)](https://nodei.co/npm/clone-stats) + +### `copy = require('clone-stats')(stat)` ### + +Returns a clone of the original `fs.Stats` instance (`stat`). + +## License ## + +MIT. See [LICENSE.md](http://github.com/hughsk/clone-stats/blob/master/LICENSE.md) for details. diff --git a/node_modules/gulp-sourcemaps/node_modules/clone-stats/index.js b/node_modules/gulp-sourcemaps/node_modules/clone-stats/index.js new file mode 100644 index 000000000..e797cfe6e --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/clone-stats/index.js @@ -0,0 +1,13 @@ +var Stat = require('fs').Stats + +module.exports = cloneStats + +function cloneStats(stats) { + var replacement = new Stat + + Object.keys(stats).forEach(function(key) { + replacement[key] = stats[key] + }) + + return replacement +} diff --git a/node_modules/gulp-sourcemaps/node_modules/clone-stats/package.json b/node_modules/gulp-sourcemaps/node_modules/clone-stats/package.json new file mode 100644 index 000000000..2880625c1 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/clone-stats/package.json @@ -0,0 +1,31 @@ +{ + "name": "clone-stats", + "description": "Safely clone node's fs.Stats instances without losing their class methods", + "version": "0.0.1", + "main": "index.js", + "browser": "index.js", + "dependencies": {}, + "devDependencies": { + "tape": "~2.3.2" + }, + "scripts": { + "test": "node test" + }, + "author": "Hugh Kennedy (http://hughsk.io/)", + "license": "MIT", + "repository": { + "type": "git", + "url": "git://github.com/hughsk/clone-stats" + }, + "bugs": { + "url": "https://github.com/hughsk/clone-stats/issues" + }, + "homepage": "https://github.com/hughsk/clone-stats", + "keywords": [ + "stats", + "fs", + "clone", + "copy", + "prototype" + ] +} diff --git a/node_modules/gulp-sourcemaps/node_modules/clone-stats/test.js b/node_modules/gulp-sourcemaps/node_modules/clone-stats/test.js new file mode 100644 index 000000000..e4bb2814d --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/clone-stats/test.js @@ -0,0 +1,36 @@ +var test = require('tape') +var clone = require('./') +var fs = require('fs') + +test('file', function(t) { + compare(t, fs.statSync(__filename)) + t.end() +}) + +test('directory', function(t) { + compare(t, fs.statSync(__dirname)) + t.end() +}) + +function compare(t, stat) { + var copy = clone(stat) + + t.deepEqual(stat, copy, 'clone has equal properties') + t.ok(stat instanceof fs.Stats, 'original is an fs.Stat') + t.ok(copy instanceof fs.Stats, 'copy is an fs.Stat') + + ;['isDirectory' + , 'isFile' + , 'isBlockDevice' + , 'isCharacterDevice' + , 'isSymbolicLink' + , 'isFIFO' + , 'isSocket' + ].forEach(function(method) { + t.equal( + stat[method].call(stat) + , copy[method].call(copy) + , 'equal value for stat.' + method + '()' + ) + }) +} diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/.npmignore b/node_modules/gulp-sourcemaps/node_modules/replace-ext/.npmignore new file mode 100644 index 000000000..b5ef13a3c --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/.npmignore @@ -0,0 +1,6 @@ +.DS_Store +*.log +node_modules +build +*.node +components \ No newline at end of file diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/.travis.yml b/node_modules/gulp-sourcemaps/node_modules/replace-ext/.travis.yml new file mode 100644 index 000000000..8101b9fe7 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/.travis.yml @@ -0,0 +1,8 @@ +language: node_js +node_js: + - "0.7" + - "0.8" + - "0.9" + - "0.10" +after_script: + - npm run coveralls \ No newline at end of file diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/LICENSE b/node_modules/gulp-sourcemaps/node_modules/replace-ext/LICENSE new file mode 100755 index 000000000..7cbe012c6 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2014 Fractal + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/README.md b/node_modules/gulp-sourcemaps/node_modules/replace-ext/README.md new file mode 100644 index 000000000..05b5d21fd --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/README.md @@ -0,0 +1,44 @@ +# replace-ext [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Dependency Status][david-image]][david-url] + + +## Information + + + + + + + + + + + + + +
Packagereplace-ext
DescriptionReplaces a file extension with another one
Node Version>= 0.4
+ +## Usage + +```javascript +var replaceExt = require('replace-ext'); + +var path = '/some/dir/file.js'; +var npath = replaceExt(path, '.coffee'); + +console.log(npath); // /some/dir/file.coffee +``` + +[npm-url]: https://npmjs.org/package/replace-ext +[npm-image]: https://badge.fury.io/js/replace-ext.png + +[travis-url]: https://travis-ci.org/wearefractal/replace-ext +[travis-image]: https://travis-ci.org/wearefractal/replace-ext.png?branch=master + +[coveralls-url]: https://coveralls.io/r/wearefractal/replace-ext +[coveralls-image]: https://coveralls.io/repos/wearefractal/replace-ext/badge.png + +[depstat-url]: https://david-dm.org/wearefractal/replace-ext +[depstat-image]: https://david-dm.org/wearefractal/replace-ext.png + +[david-url]: https://david-dm.org/wearefractal/replace-ext +[david-image]: https://david-dm.org/wearefractal/replace-ext.png?theme=shields.io \ No newline at end of file diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/index.js b/node_modules/gulp-sourcemaps/node_modules/replace-ext/index.js new file mode 100644 index 000000000..3f76938e4 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/index.js @@ -0,0 +1,9 @@ +var path = require('path'); + +module.exports = function(npath, ext) { + if (typeof npath !== 'string') return npath; + if (npath.length === 0) return npath; + + var nFileName = path.basename(npath, path.extname(npath))+ext; + return path.join(path.dirname(npath), nFileName); +}; \ No newline at end of file diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/package.json b/node_modules/gulp-sourcemaps/node_modules/replace-ext/package.json new file mode 100644 index 000000000..307d99b78 --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/package.json @@ -0,0 +1,35 @@ +{ + "name":"replace-ext", + "description":"Replaces a file extension with another one", + "version":"0.0.1", + "homepage":"http://github.com/wearefractal/replace-ext", + "repository":"git://github.com/wearefractal/replace-ext.git", + "author":"Fractal (http://wearefractal.com/)", + "main":"./index.js", + + "dependencies":{ + + }, + "devDependencies": { + "mocha": "~1.17.0", + "should": "~3.1.0", + "mocha-lcov-reporter": "~0.0.1", + "coveralls": "~2.6.1", + "istanbul": "~0.2.3", + "rimraf": "~2.2.5", + "jshint": "~2.4.1" + }, + "scripts": { + "test": "mocha --reporter spec && jshint", + "coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage" + }, + "engines": { + "node": ">= 0.4" + }, + "licenses":[ + { + "type":"MIT", + "url":"http://github.com/wearefractal/replace-ext/raw/master/LICENSE" + } + ] +} diff --git a/node_modules/gulp-sourcemaps/node_modules/replace-ext/test/main.js b/node_modules/gulp-sourcemaps/node_modules/replace-ext/test/main.js new file mode 100644 index 000000000..51377021b --- /dev/null +++ b/node_modules/gulp-sourcemaps/node_modules/replace-ext/test/main.js @@ -0,0 +1,51 @@ +var replaceExt = require('../'); +var path = require('path'); +var should = require('should'); +require('mocha'); + +describe('replace-ext', function() { + it('should return a valid replaced extension on nested', function(done) { + var fname = path.join(__dirname, './fixtures/test.coffee'); + var expected = path.join(__dirname, './fixtures/test.js'); + var nu = replaceExt(fname, '.js'); + should.exist(nu); + nu.should.equal(expected); + done(); + }); + + it('should return a valid replaced extension on flat', function(done) { + var fname = 'test.coffee'; + var expected = 'test.js'; + var nu = replaceExt(fname, '.js'); + should.exist(nu); + nu.should.equal(expected); + done(); + }); + + it('should not return a valid replaced extension on empty string', function(done) { + var fname = ''; + var expected = ''; + var nu = replaceExt(fname, '.js'); + should.exist(nu); + nu.should.equal(expected); + done(); + }); + + it('should return a valid removed extension on nested', function(done) { + var fname = path.join(__dirname, './fixtures/test.coffee'); + var expected = path.join(__dirname, './fixtures/test'); + var nu = replaceExt(fname, ''); + should.exist(nu); + nu.should.equal(expected); + done(); + }); + + it('should return a valid added extension on nested', function(done) { + var fname = path.join(__dirname, './fixtures/test'); + var expected = path.join(__dirname, './fixtures/test.js'); + var nu = replaceExt(fname, '.js'); + should.exist(nu); + nu.should.equal(expected); + done(); + }); +}); diff --git a/node_modules/gulp-sourcemaps/node_modules/vinyl/package.json b/node_modules/gulp-sourcemaps/node_modules/vinyl/package.json index 5e9de9789..b4c815761 100644 --- a/node_modules/gulp-sourcemaps/node_modules/vinyl/package.json +++ b/node_modules/gulp-sourcemaps/node_modules/vinyl/package.json @@ -1,64 +1,20 @@ { - "_args": [ - [ - { - "raw": "vinyl@^1.0.0", - "scope": null, - "escapedName": "vinyl", - "name": "vinyl", - "rawSpec": "^1.0.0", - "spec": ">=1.0.0 <2.0.0", - "type": "range" - }, - "/home/dold/repos/taler/wallet-webex/node_modules/gulp-sourcemaps" - ] - ], - "_from": "vinyl@>=1.0.0 <2.0.0", - "_id": "vinyl@1.2.0", - "_inCache": true, - "_location": "/gulp-sourcemaps/vinyl", - "_nodeVersion": "0.10.41", - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/vinyl-1.2.0.tgz_1469745377040_0.31818721699528396" - }, - "_npmUser": { - "name": "phated", - "email": "blaine.bublitz@gmail.com" - }, - "_npmVersion": "2.15.2", - "_phantomChildren": {}, - "_requested": { - "raw": "vinyl@^1.0.0", - "scope": null, - "escapedName": "vinyl", - "name": "vinyl", - "rawSpec": "^1.0.0", - "spec": ">=1.0.0 <2.0.0", - "type": "range" - }, - "_requiredBy": [ - "/gulp-sourcemaps" + "name": "vinyl", + "description": "A virtual file format", + "version": "1.2.0", + "homepage": "http://github.com/gulpjs/vinyl", + "repository": "git://github.com/gulpjs/vinyl.git", + "author": "Fractal (http://wearefractal.com/)", + "main": "./index.js", + "files": [ + "index.js", + "lib" ], - "_resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", - "_shasum": "5c88036cf565e5df05558bfc911f8656df218884", - "_shrinkwrap": null, - "_spec": "vinyl@^1.0.0", - "_where": "/home/dold/repos/taler/wallet-webex/node_modules/gulp-sourcemaps", - "author": { - "name": "Fractal", - "email": "contact@wearefractal.com", - "url": "http://wearefractal.com/" - }, - "bugs": { - "url": "https://github.com/gulpjs/vinyl/issues" - }, "dependencies": { "clone": "^1.0.0", "clone-stats": "^0.0.1", "replace-ext": "0.0.1" }, - "description": "A virtual file format", "devDependencies": { "buffer-equal": "0.0.1", "eslint": "^1.7.3", @@ -74,49 +30,15 @@ "rimraf": "^2.2.5", "should": "^7.0.0" }, - "directories": {}, - "dist": { - "shasum": "5c88036cf565e5df05558bfc911f8656df218884", - "tarball": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz" - }, - "engines": { - "node": ">= 0.9" - }, - "files": [ - "index.js", - "lib" - ], - "gitHead": "ba3670add1f2f52827e3807b8783159f30ba4606", - "homepage": "http://github.com/gulpjs/vinyl", - "license": "MIT", - "main": "./index.js", - "maintainers": [ - { - "name": "contra", - "email": "contra@wearefractal.com" - }, - { - "name": "fractal", - "email": "contact@wearefractal.com" - }, - { - "name": "phated", - "email": "blaine.bublitz@gmail.com" - } - ], - "name": "vinyl", - "optionalDependencies": {}, - "readme": "ERROR: No README data found!", - "repository": { - "type": "git", - "url": "git://github.com/gulpjs/vinyl.git" - }, "scripts": { - "changelog": "github-changes -o gulpjs -r vinyl -b master -f ./CHANGELOG.md --order-semver --use-commit-body", - "coveralls": "istanbul cover _mocha && istanbul-coveralls", "lint": "eslint . && jscs *.js lib/ test/", "pretest": "npm run lint", - "test": "mocha" + "test": "mocha", + "coveralls": "istanbul cover _mocha && istanbul-coveralls", + "changelog": "github-changes -o gulpjs -r vinyl -b master -f ./CHANGELOG.md --order-semver --use-commit-body" + }, + "engines": { + "node": ">= 0.9" }, - "version": "1.2.0" + "license": "MIT" } diff --git a/node_modules/gulp-sourcemaps/package.json b/node_modules/gulp-sourcemaps/package.json index a22bc2583..70588126e 100644 --- a/node_modules/gulp-sourcemaps/package.json +++ b/node_modules/gulp-sourcemaps/package.json @@ -1,57 +1,24 @@ { - "_args": [ - [ - { - "raw": "gulp-sourcemaps@^1.5.2", - "scope": null, - "escapedName": "gulp-sourcemaps", - "name": "gulp-sourcemaps", - "rawSpec": "^1.5.2", - "spec": ">=1.5.2 <2.0.0", - "type": "range" - }, - "/home/dold/repos/taler/wallet-webex/node_modules/vinyl-fs" - ] - ], - "_from": "gulp-sourcemaps@>=1.5.2 <2.0.0", - "_id": "gulp-sourcemaps@1.6.0", - "_inCache": true, - "_location": "/gulp-sourcemaps", - "_nodeVersion": "4.1.1", - "_npmUser": { - "name": "floridoo", - "email": "florian.reiterer@gmail.com" - }, - "_npmVersion": "3.3.4", - "_phantomChildren": { - "clone": "1.0.2", - "clone-stats": "0.0.1", - "replace-ext": "0.0.1" - }, - "_requested": { - "raw": "gulp-sourcemaps@^1.5.2", - "scope": null, - "escapedName": "gulp-sourcemaps", - "name": "gulp-sourcemaps", - "rawSpec": "^1.5.2", - "spec": ">=1.5.2 <2.0.0", - "type": "range" + "name": "gulp-sourcemaps", + "version": "1.6.0", + "description": "Source map support for Gulp.js", + "homepage": "http://github.com/floridoo/gulp-sourcemaps", + "repository": "git://github.com/floridoo/gulp-sourcemaps.git", + "main": "index.js", + "scripts": { + "test": "jshint *.js test/*.js && faucet test/*.js", + "tap": "tape test/*.js", + "cover": "istanbul cover --dir reports/coverage tape \"test/*.js\"", + "coveralls": "istanbul cover tape \"test/*.js\" --report lcovonly && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage" }, - "_requiredBy": [ - "/vinyl-fs" + "keywords": [ + "gulpplugin", + "gulp", + "source maps", + "sourcemaps" ], - "_resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz", - "_shasum": "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c", - "_shrinkwrap": null, - "_spec": "gulp-sourcemaps@^1.5.2", - "_where": "/home/dold/repos/taler/wallet-webex/node_modules/vinyl-fs", - "author": { - "name": "Florian Reiterer", - "email": "me@florianreiterer.com" - }, - "bugs": { - "url": "https://github.com/floridoo/gulp-sourcemaps/issues" - }, + "author": "Florian Reiterer ", + "license": "ISC", "dependencies": { "convert-source-map": "^1.1.1", "graceful-fs": "^4.1.2", @@ -59,53 +26,17 @@ "through2": "^2.0.0", "vinyl": "^1.0.0" }, - "description": "Source map support for Gulp.js", "devDependencies": { - "coveralls": "^2.11.4", - "faucet": "0.0.1", - "istanbul": "^0.3.21", "jshint": "^2.8.0", - "tape": "^4.2.0" - }, - "directories": {}, - "dist": { - "shasum": "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c", - "tarball": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz" + "tape": "^4.2.0", + "istanbul": "^0.3.21", + "faucet": "0.0.1", + "coveralls": "^2.11.4" }, "files": [ "index.js", "package.json", "README.md", "LICENSE.md" - ], - "gitHead": "cddce0d57e462b89b7d7f7c1d1864ad2784d17ef", - "homepage": "http://github.com/floridoo/gulp-sourcemaps", - "keywords": [ - "gulpplugin", - "gulp", - "source maps", - "sourcemaps" - ], - "license": "ISC", - "main": "index.js", - "maintainers": [ - { - "name": "floridoo", - "email": "florian.reiterer@gmail.com" - } - ], - "name": "gulp-sourcemaps", - "optionalDependencies": {}, - "readme": "ERROR: No README data found!", - "repository": { - "type": "git", - "url": "git://github.com/floridoo/gulp-sourcemaps.git" - }, - "scripts": { - "cover": "istanbul cover --dir reports/coverage tape \"test/*.js\"", - "coveralls": "istanbul cover tape \"test/*.js\" --report lcovonly && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", - "tap": "tape test/*.js", - "test": "jshint *.js test/*.js && faucet test/*.js" - }, - "version": "1.6.0" + ] } -- cgit v1.2.3