| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "sass-loader",
- "version": "5.0.0",
- "description": "Sass loader for webpack",
- "main": "lib/loader.js",
- "scripts": {
- "create-spec": "node test/tools/runCreateSpec.js",
- "pretest": "node test/tools/runCreateSpec.js",
- "test": "mocha -R spec",
- "posttest": "eslint --fix lib test",
- "test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
- "test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap",
- "test-watch": "webpack --config test/watch/webpack.config.js",
- "test-extract-text": "webpack --config test/extractText/webpack.config.js",
- "test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline"
- },
- "keywords": [
- "sass",
- "libsass",
- "webpack",
- "loader"
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/jtangelder/sass-loader.git"
- },
- "author": "J. Tangelder",
- "license": "MIT",
- "peerDependencies": {
- "node-sass": "^4.0.0",
- "webpack": "^2.0.0"
- },
- "dependencies": {
- "async": "^2.0.1",
- "loader-utils": "^0.2.15",
- "lodash.tail": "^4.1.1",
- "pify": "^2.3.0"
- },
- "devDependencies": {
- "bootstrap-sass": "^3.3.5",
- "css-loader": "^0.26.1",
- "eslint": "^3.15.0",
- "eslint-config-peerigon": "^9.0.0",
- "eslint-plugin-jsdoc": "^2.4.0",
- "file-loader": "^0.10.0",
- "mocha": "^3.0.2",
- "node-sass": "^4.5.0",
- "raw-loader": "^0.5.1",
- "should": "^11.2.0",
- "style-loader": "^0.13.1",
- "webpack": "^2.2.1",
- "webpack-dev-server": "^2.3.0",
- "webpack-merge": "^2.6.1"
- }
- }
|