stylelint
Version:
Modern CSS linter
115 lines (114 loc) • 2.77 kB
JSON
{
"name": "stylelint",
"version": "5.3.0",
"description": "Modern CSS linter",
"keywords": [
"css",
"csslint",
"lint",
"linter",
"stylelint"
],
"authors": [
"David Clark",
"Maxime Thirouin",
"Richard Hallows"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stylelint/stylelint.git"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"CONTRIBUTING.md",
"dist",
"src",
"docs",
"!**/__tests__"
],
"dependencies": {
"autoprefixer": "^6.0.0",
"balanced-match": "^0.3.0",
"chalk": "^1.1.1",
"colorguard": "^1.1.1",
"cosmiconfig": "^1.1.0",
"doiuse": "^2.3.0",
"execall": "^1.0.0",
"get-stdin": "^5.0.0",
"globby": "^4.0.0",
"globjoin": "^0.1.2",
"is-css-color-name": "^0.1.1",
"lodash": "^4.0.0",
"meow": "^3.3.0",
"multimatch": "^2.1.0",
"normalize-selector": "^0.2.0",
"postcss": "^5.0.4",
"postcss-less": "^0.8.0",
"postcss-reporter": "^1.3.0",
"postcss-resolve-nested-selector": "^0.1.1",
"postcss-scss": "^0.1.3",
"postcss-selector-parser": "^1.3.3",
"postcss-value-parser": "^3.1.1",
"resolve-from": "^2.0.0",
"specificity": "^0.1.5",
"stylehacks": "^2.3.0",
"sugarss": "^0.1.2"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-tape-runner": "^2.0.0",
"benchmark": "^2.1.0",
"eslint": "^2.4.0",
"eslint-config-stylelint": "^1.0.0",
"npmpub": "^3.0.1",
"postcss-import": "^8.0.2",
"remark": "^4.0.0",
"remark-lint": "^3.0.0",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"sinon": "^1.16.1",
"tape": "^4.2.0",
"trash": "^3.4.1"
},
"scripts": {
"benchmark-rule": "babel-node benchmark-rule.js",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"release": "npmpub",
"lint": "eslint . --ignore-path .gitignore && remark . --quiet --frail",
"tape": "babel-tape-runner \"src/**/__tests__/*.js\"",
"test": "npm run lint && npm run tape"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "stylelint",
"rules": {
"arrow-spacing": 2,
"no-var": 2,
"object-shorthand": 2,
"prefer-const": 2,
"template-curly-spacing": 2
}
},
"remarkConfig": {
"plugins": {
"lint": {
"list-item-content-indent": false,
"list-item-indent": "space",
"list-item-spacing": false,
"maximum-heading-length": false,
"maximum-line-length": false,
"no-missing-blank-lines": false,
"no-multiple-toplevel-headings": false
}
}
}
}