gulp-sass/package.json
Vincent Prouillet 212e221212 Sourcemap paths seem to be relative now?
At least the test still pass and paths
looks the same with and without the relative fudge.
Sourcemaps are completely wonky though and do not point at the right thing

Also removes jshint since it's using eslint now
2015-03-24 12:16:31 +00:00

36 lines
743 B
JSON

{
"name": "gulp-sass",
"version": "2.0.0-alpha.1",
"description": "Gulp plugin for sass",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test"
},
"repository": {
"type": "git",
"url": "git://github.com/dlmanning/gulp-sass"
},
"keywords": [
"gulpplugin",
"sass",
"gulp"
],
"author": "David Manning",
"license": "MIT",
"bugs": {
"url": "https://github.com/dlmanning/gulp-sass/issues"
},
"dependencies": {
"gulp-util": "^3.0",
"node-sass": "^3.0.0-alpha.1",
"object-assign": "^2.0.0",
"through2": "^0.6.3",
"vinyl-sourcemaps-apply": "~0.1.1"
},
"devDependencies": {
"eslint": "^0.17.1",
"mocha": "^2.2.1",
"should": "^5.2.0"
}
}