Code: Formats and fixes JSCS warnings.
* Removes unused pacakge `shelljs`. * Fixes package.json validation issue reported by WE2013, based on njs package.json schema: > *The value property "repository" must be of type "Object", but was "sass/node-sass"* PR URL: #723.
Showing
| ... | ... | @@ -5,7 +5,10 @@ |
| "description": "Wrapper around libsass", | ||
| "license": "MIT", | ||
| "homepage": "https://github.com/sass/node-sass", | ||
| "repository": "sass/node-sass", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/sass/node-sass" | ||
| }, | ||
| "author": { | ||
| "name": "Andrew Nesbitt", | ||
| "email": "andrewnez@gmail.com", | ||
| ... | ... | @@ -54,8 +57,7 @@ |
| "object-assign": "^2.0.0", | ||
| "pangyp": "^2.1.0", | ||
| "request": "^2.53.0", | ||
| "sass-graph": "^1.0.3", | ||
| "shelljs": "^0.3.0" | ||
| "sass-graph": "^1.0.3" | ||
| }, | ||
| "devDependencies": { | ||
| "coveralls": "^2.11.2", | ||
| ... | ... |
Please
register
or
sign in
to comment