12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "gulp-sourcemaps",
- "version": "1.12.1",
- "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": {
- "lint": "jshint ./src/**/*.js test/*.js",
- "test": "npm run lint && 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",
- "serve": "http-server",
- "test:int": "rm -rf ./tmp && tape ./test/integration.js"
- },
- "keywords": [
- "gulpplugin",
- "gulp",
- "source maps",
- "sourcemaps"
- ],
- "author": "Florian Reiterer <me@florianreiterer.com>",
- "license": "ISC",
- "dependencies": {
- "@gulp-sourcemaps/map-sources": "1.X",
- "acorn": "4.X",
- "convert-source-map": "1.X",
- "css": "2.X",
- "debug-fabulous": "0.0.X",
- "detect-newline": "2.X",
- "graceful-fs": "4.X",
- "source-map": "~0.6.0",
- "strip-bom": "2.X",
- "through2": "2.X",
- "vinyl": "1.X"
- },
- "devDependencies": {
- "bootstrap": "3.3.7",
- "coveralls": "2.X",
- "faucet": "0.0.X",
- "gulp": "3.X",
- "gulp-concat": "2.X",
- "gulp-if": "2.0.2",
- "gulp-less": "3.3.0",
- "gulp-load-plugins": "1.X",
- "hook-std": "0.2.X",
- "http-server": "0.9.0",
- "istanbul": "0.X",
- "jshint": "2.X",
- "lodash": "4.17.4",
- "mississippi": "^1.3.0",
- "object-assign": "^4.1.0",
- "tape": "4.X",
- "yargs": "6.6.0"
- },
- "files": [
- "index.js",
- "src"
- ],
- "engines": {
- "node": ">=0.10.0"
- }
- }
|