| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "name": "sass-loader",
- "version": "7.1.0",
- "description": "Sass loader for webpack",
- "author": "J. Tangelder",
- "license": "MIT",
- "main": "lib/loader.js",
- "files": [
- "lib"
- ],
- "scripts": {
- "appveyor:test": "npm test",
- "create-spec": "node test/tools/runCreateSpec.js",
- "lint": "eslint lib test",
- "test": "nyc --all mocha -R spec -t 10000",
- "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 --inline",
- "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",
- "travis:lint": "npm run lint",
- "travis:test": "npm run test",
- "travis:coverage": "npm run test",
- "pretest": "npm run create-spec",
- "posttest": "npm run lint",
- "release": "standard-version"
- },
- "dependencies": {
- "clone-deep": "^2.0.1",
- "loader-utils": "^1.0.1",
- "lodash.tail": "^4.1.1",
- "neo-async": "^2.5.0",
- "pify": "^3.0.0",
- "semver": "^5.5.0"
- },
- "devDependencies": {
- "bootstrap-sass": "^3.3.5",
- "css-loader": "^0.28.4",
- "eslint": "^3.16.0",
- "eslint-config-peerigon": "^9.0.0",
- "eslint-plugin-jsdoc": "^2.4.0",
- "file-loader": "^0.11.2",
- "mocha": "^3.0.2",
- "mock-require": "^3.0.1",
- "node-sass": "^4.5.0",
- "nyc": "^11.0.2",
- "raw-loader": "^0.5.1",
- "sass": "^1.3.0",
- "should": "^11.2.0",
- "standard-version": "^4.2.0",
- "style-loader": "^0.18.2",
- "webpack": "^4.5.0",
- "webpack-dev-server": "^2.4.1",
- "webpack-merge": "^4.0.0"
- },
- "engines": {
- "node": ">= 6.9.0 || >= 8.9.0"
- },
- "peerDependencies": {
- "webpack": "^3.0.0 || ^4.0.0"
- },
- "keywords": [
- "sass",
- "libsass",
- "webpack",
- "loader"
- ],
- "repository": "https://github.com/webpack-contrib/sass-loader.git",
- "bugs": "https://github.com/webpack-contrib/sass-loader/issues",
- "homepage": "https://github.com/webpack-contrib/sass-loader"
- }
|