Skip to content

Commit

Permalink
Updating package.json with peerDependencies and adding yarn.lock and …
Browse files Browse the repository at this point in the history
…npm shrinkwrap
  • Loading branch information
tomasAlabes committed Oct 27, 2016
1 parent c569fb7 commit d1c3fec
Show file tree
Hide file tree
Showing 3 changed files with 431 additions and 6 deletions.
152 changes: 152 additions & 0 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 11 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"name": "stylefmt-loader",
"version": "1.0.1",
"version": "1.1.0",
"description": "Fixes stylelint issues automatically while bundling with Webpack",
"author": {
"name": "Tomas Alabes"
},
"main": "stylefmt-loader.js",
"dependencies": {
"loader-utils": "^0.2.15",
"postcss": "^5.1.2",
"postcss-scss": "^0.1.9",
"stylefmt": "^4.2.3"
"loader-utils": "0.2.16",
"postcss-scss": "0.3.1"
},
"peerDependencies":{
"stylefmt": "4.x",
"postcss": "5.x"
},
"devDependencies": {
"mocha": "^3.0.1"
"mocha": "3.1.2"
},
"scripts": {
"test": "(cd tests/example && cp ../original/test.scss . && rm -rf ./node_modules/stylefmt-loader && npm i && webpack --config webpack.config.js) && ./node_modules/mocha/bin/mocha --ui tdd tests/loader.js"
Expand All @@ -32,5 +34,8 @@
},
"bugs": {
"url": "https://github.com/tomasAlabes/stylefmt-loader/issues"
},
"engines": {
"node": ">=4.2.0"
}
}
Loading

0 comments on commit d1c3fec

Please sign in to comment.