[FEATURE] initial implementation
parents
Showing
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.jshintrc
0 → 100644
.npmignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
index.js
0 → 100644
package.json
0 → 100644
{ | |||
"name": "gulp-inline-svg", | |||
"version": "1.0.0", | |||
"description": "A gulp plugin to use inline SVG as background-images", | |||
"keywords": [ | |||
"gulpplugin, gulp, svg, inline" | |||
], | |||
"main": "index.js", | |||
"directories": { | |||
"test": "test" | |||
}, | |||
"author": "", | |||
"repository": { | |||
"type": "git", | |||
"url": "http://gitlab.sgalinski.de/toolchain/gulp-inline-svg.git" | |||
}, | |||
"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" | |||
}, | |||
"dependencies": { | |||
"mustache": "^2.0.0", | |||
"through2": "*", | |||
"underscore": "^1.8.3", | |||
"xml2js": "^0.4.9" | |||
}, | |||
"devDependencies": { | |||
"coveralls": "*", | |||
"event-stream": "*", | |||
"gulp-util": "^3.0.5", | |||
"istanbul": "*", | |||
"mocha": "*", | |||
"mocha-lcov-reporter": "*", | |||
"should": "~2.1.0" | |||
}, | |||
"license": "MIT" | |||
} |
template.mustache
0 → 100644
test/expected/test.scss
0 → 100644
test/fixtures/test.svg
0 → 100644
test/main.js
0 → 100644
Please register or sign in to comment