stylelint-scss
Version:
A collection of SCSS specific rules for stylelint
79 lines (78 loc) • 2 kB
JSON
{
"name": "stylelint-scss",
"description": "A collection of SCSS specific rules for stylelint",
"version": "1.3.4",
"author": "Krister Kari",
"babel": {
"presets": [
"es2015"
]
},
"bugs": {
"url": "https://github.com/kristerkari/stylelint-scss/issues"
},
"dependencies": {
"lodash": "^4.11.1",
"postcss-media-query-parser": "^0.1.0",
"postcss-resolve-nested-selector": "^0.1.1",
"postcss-selector-parser": "^2.0.0",
"postcss-value-parser": "^3.3.0",
"stylelint": "^7.0.3"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^2.3.0",
"eslint-config-stylelint": "^1.0.0",
"npmpub": "^3.0.3",
"postcss": "^5.0.21",
"postcss-scss": "^0.1.7",
"replace": "^0.3.0",
"request": "^2.72.0",
"rimraf": "^2.5.2",
"semver": "^5.1.0",
"stylelint-test-rule-tape": "^0.2.0",
"tape": "^4.5.1"
},
"eslintConfig": {
"extends": "stylelint",
"rules": {
"arrow-spacing": 2,
"no-var": 2,
"object-shorthand": 2,
"prefer-const": 2,
"template-curly-spacing": 2
}
},
"files": [
"dist",
"src",
"!**/__tests__"
],
"homepage": "https://github.com/kristerkari/stylelint-scss#readme",
"keywords": [
"css",
"csslint",
"lint",
"linter",
"stylelint",
"stylelint-plugin"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kristerkari/stylelint-scss.git"
},
"scripts": {
"milestone": "node scripts/update-milestone.js",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist",
"lint": "eslint . --ignore-path .gitignore",
"prepublish": "npm run build",
"pretest": "npm run lint",
"release": "npmpub",
"test": "babel-tape-runner \"src/**/__tests__/*.js\""
}
}