From 2e6a17b9f22f8dbe2a5b106547acf565a4a5bb02 Mon Sep 17 00:00:00 2001 From: Joschi Kuphal Date: Sun, 29 Nov 2015 10:58:46 +0100 Subject: [PATCH] Re-enabled linting --- CHANGELOG.md | 4 ++ package.json | 137 ++++++++++++++++++++++++++------------------------- 2 files changed, 73 insertions(+), 68 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5cba1..253d93f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.16 Maintenance release (unreleased) +* Updated dev dependencies +* Re-enabled linting (see https://github.com/spalger/gulp-jshint/issues/131) + ## 1.2.15 Compatibility release (2015-11-24) * Compatible with [svg-sprite 1.2.15](https://github.com/jkphl/svg-sprite/tree/v1.2.15) * Updated dev dependencies diff --git a/package.json b/package.json index 844ab2d..eeb76aa 100644 --- a/package.json +++ b/package.json @@ -1,69 +1,70 @@ { - "name": "gulp-svg-sprite", - "description": "SVG sprites & stacks galore — Gulp plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours", - "version": "1.2.15", - "homepage": "https://github.com/jkphl/gulp-svg-sprite", - "author": "Joschi Kuphal (https://jkphl.is)", - "repository": { - "type": "git", - "url": "https://github.com/jkphl/gulp-svg-sprite.git" - }, - "bugs": { - "url": "https://github.com/jkphl/gulp-svg-sprite/issues" - }, - "license": "MIT", - "engines": { - "node": ">= 0.10.0" - }, - "scripts": { - "test": "istanbul test _mocha --report html -- test/*.js --reporter spec", - "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" - }, - "files": [ - "index.js", - "CHANGELOG.md" - ], - "dependencies": { - "svg-sprite": "~1.2.15", - "through2": "^2.0.0", - "gulp-util": "^3.0.7", - "vinyl": "^1.1.0" - }, - "devDependencies": { - "mocha": "*", - "coveralls": "*", - "mocha-lcov-reporter": "*", - "istanbul": "*", - "event-stream": "*", - "should": "~7.1.1", - "glob": "~6.0.1", - "svg2png": "^2.0.0", - "image-diff": "^1.3.0", - "mkdirp": "^0.5.1", - "gulp": "^3.9.0", - "gulp-jshint": "^2.0.0", - "gulp-plumber": "^1.0.1" - }, - "keywords": [ - "gulpplugin", - "icon", - "icons", - "svg", - "png", - "sprite", - "spritesheet", - "stack", - "generator", - "css", - "sass", - "less", - "stylus", - "stylesheet", - "inline", - "html", - "vector", - "rwd", - "retina", - "mustache" - ] -} \ No newline at end of file + "name": "gulp-svg-sprite", + "description": "SVG sprites & stacks galore — Gulp plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours", + "version": "1.2.15", + "homepage": "https://github.com/jkphl/gulp-svg-sprite", + "author": "Joschi Kuphal (https://jkphl.is)", + "repository": { + "type": "git", + "url": "https://github.com/jkphl/gulp-svg-sprite.git" + }, + "bugs": { + "url": "https://github.com/jkphl/gulp-svg-sprite/issues" + }, + "license": "MIT", + "engines": { + "node": ">= 0.10.0" + }, + "scripts": { + "test": "gulp && istanbul test _mocha --report html -- test/*.js --reporter spec", + "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" + }, + "files": [ + "index.js", + "CHANGELOG.md" + ], + "dependencies": { + "svg-sprite": "~1.2.15", + "through2": "^2.0.0", + "gulp-util": "^3.0.7", + "vinyl": "^1.1.0" + }, + "devDependencies": { + "coveralls": "*", + "event-stream": "*", + "glob": "~6.0.1", + "gulp": "^3.9.0", + "gulp-jshint": "^2.0.0", + "gulp-plumber": "^1.0.1", + "image-diff": "^1.3.0", + "istanbul": "*", + "jshint": "^2.8.0", + "mkdirp": "^0.5.1", + "mocha": "*", + "mocha-lcov-reporter": "*", + "should": "~7.1.1", + "svg2png": "^2.0.0" + }, + "keywords": [ + "gulpplugin", + "icon", + "icons", + "svg", + "png", + "sprite", + "spritesheet", + "stack", + "generator", + "css", + "sass", + "less", + "stylus", + "stylesheet", + "inline", + "html", + "vector", + "rwd", + "retina", + "mustache" + ] +}