129 lines
3.7 KiB
JSON
129 lines
3.7 KiB
JSON
{
|
|
"_from": "sass-loader@^7.0.1",
|
|
"_id": "sass-loader@7.2.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-h8yUWaWtsbuIiOCgR9fd9c2lRXZ2uG+h8Dzg/AGNj+Hg/3TO8+BBAW9mEP+mh8ei+qBKqSJ0F1FLlYjNBc61OA==",
|
|
"_location": "/sass-loader",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "sass-loader@^7.0.1",
|
|
"name": "sass-loader",
|
|
"escapedName": "sass-loader",
|
|
"rawSpec": "^7.0.1",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^7.0.1"
|
|
},
|
|
"_requiredBy": [
|
|
"/gatsby-plugin-sass"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-7.2.0.tgz",
|
|
"_shasum": "e34115239309d15b2527cb62b5dfefb62a96ff7f",
|
|
"_spec": "sass-loader@^7.0.1",
|
|
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code/node_modules/gatsby-plugin-sass",
|
|
"author": {
|
|
"name": "J. Tangelder"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/webpack-contrib/sass-loader/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"clone-deep": "^4.0.1",
|
|
"loader-utils": "^1.0.1",
|
|
"neo-async": "^2.5.0",
|
|
"pify": "^4.0.1",
|
|
"semver": "^5.5.0"
|
|
},
|
|
"deprecated": false,
|
|
"description": "Sass loader for webpack",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^7.2.1",
|
|
"@commitlint/config-conventional": "^7.1.2",
|
|
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
"bootstrap-sass": "^3.3.5",
|
|
"chokidar": "^2.1.6",
|
|
"css-loader": "^2.0.0",
|
|
"eslint": "^5.10.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-jsdoc": "^4.4.3",
|
|
"eslint-plugin-prettier": "^3.0.0",
|
|
"file-loader": "^3.0.1",
|
|
"husky": "^1.2.0",
|
|
"lint-staged": "^8.1.0",
|
|
"mocha": "^6.0.2",
|
|
"mock-require": "^3.0.1",
|
|
"node-sass": "^4.5.0",
|
|
"nyc": "^13.1.0",
|
|
"prettier": "^1.15.2",
|
|
"raw-loader": "^1.0.0",
|
|
"sass": "^1.3.0",
|
|
"should": "^13.2.3",
|
|
"standard-version": "^5.0.2",
|
|
"style-loader": "^0.23.1",
|
|
"webpack": "^4.5.0",
|
|
"webpack-cli": "^3.1.0",
|
|
"webpack-dev-server": "^3.1.4",
|
|
"webpack-merge": "^4.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.9.0"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"homepage": "https://github.com/webpack-contrib/sass-loader",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"sass",
|
|
"libsass",
|
|
"webpack",
|
|
"loader"
|
|
],
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"main": "lib/loader.js",
|
|
"name": "sass-loader",
|
|
"peerDependencies": {
|
|
"webpack": "^3.0.0 || ^4.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/webpack-contrib/sass-loader.git"
|
|
},
|
|
"scripts": {
|
|
"appveyor:test": "npm test",
|
|
"create-spec": "node test/tools/runCreateSpec.js",
|
|
"lint": "eslint lib test",
|
|
"posttest": "npm run lint",
|
|
"pretest": "npm run create-spec",
|
|
"release": "standard-version",
|
|
"test": "nyc mocha -R spec -t 10000",
|
|
"test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
|
|
"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",
|
|
"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",
|
|
"travis:coverage": "npm run test",
|
|
"travis:lint": "npm run lint && npm run travis:lint:commits",
|
|
"travis:lint:commits": "commitlint --from=${TRAVIS_BRANCH} --to=${TRAVIS_COMMIT}",
|
|
"travis:test": "npm run test"
|
|
},
|
|
"version": "7.2.0"
|
|
}
|