{ "name": "@joneff/sass-import-resolver", "description": "Resolves the path of sass imports, following a heavily opinionated and probably very shady algorithm", "version": "1.0.0", "author": "Ivan Zhekov ", "license": "MIT", "keywords": [ "sass", "import", "resolver" ], "main": "index.js", "files": [ "index.js" ], "directories": { "test": "test" }, "repository": { "type": "git", "url": "https://github.com/joneff/sass-import-resolver.git" }, "bugs": { "url": "https://github.com/joneff/sass-import-resolver/issues" }, "publishConfig": { "access": "public" }, "scripts": { "eslint": "eslint **/*.js", "test": "mocha", "mocha-dots": "mocha --reporter dot", "semantic-release": "semantic-release" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@commitlint/core": "^11.0.0", "@semantic-release/changelog": "^5.0.0", "@semantic-release/git": "^9.0.0", "eslint": "^7.0.0", "husky": "^4.3.8", "mocha": "^8.0.1", "semantic-release": "^17.4.4" }, "husky": { "hooks": { "pre-commit": "npm run eslint", "pre-push": "npm run eslint && npm run mocha-dots", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "dependencies": { "lodash.merge": "^4.6.2" } }