vanduynslagerp/stylelint-config-pretty

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "stylelint-config-pretty",
  "description": "Modular Stylelint shareable configuration",
  "version": "0.0.0-development",
  "author": "Pierre Vanduynslager",
  "bugs": {
    "url": "https://github.com/vanduynslagerp/stylelint-config-pretty/issues"
  },
  "config": {
    "commitizen": {
      "path": "@metahub/cz-conventional-commit"
    }
  },
  "dependencies": {
    "stylelint": "^8.0.0",
    "stylelint-order": "^0.7.0",
    "stylelint-scss": "^2.1.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^5.0.1",
    "@commitlint/config-angular": "^5.1.1",
    "@metahub/cz-conventional-commit": "^2.0.0",
    "ava": "^0.23.0",
    "codecov": "^3.0.0",
    "commitizen": "^2.9.6",
    "conventional-changelog-metahub": "^1.0.1",
    "eslint": "^4.5.0",
    "eslint-config-prettier": "^2.3.0",
    "eslint-config-pretty": "^2.1.1",
    "eslint-plugin-ava": "^4.2.1",
    "eslint-plugin-babel": "^4.1.2",
    "eslint-plugin-eslint-comments": "^2.0.1",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jasmine": "^2.8.4",
    "eslint-plugin-json": "^1.2.0",
    "eslint-plugin-node": "^5.1.1",
    "eslint-plugin-prettier": "^2.2.0",
    "eslint-plugin-promise": "^3.5.0",
    "eslint-plugin-sort-class-members": "^1.2.0",
    "eslint-plugin-unicorn": "^3.0.0",
    "husky": "^0.14.3",
    "nyc": "^11.1.0",
    "p-event": "^1.3.0",
    "prettier": "^1.5.3",
    "rimraf": "^2.6.1",
    "semantic-release": "^8.0.0",
    "sr-commit-analyzer": "^2.0.2",
    "sr-release-notes-generator": "^1.1.2"
  },
  "files": [
    "*.js",
    "!commitlint.config.js",
    "!.eslintrc.js"
  ],
  "homepage": "https://github.com/vanduynslagerp/stylelint-config-pretty#readme",
  "keywords": [
    "stylelint",
    "stylelint-config"
  ],
  "license": "MIT",
  "main": "index.js",
  "nyc": {
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "*.js",
      "!commitlint.config.js",
      "!*.config.js"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "all": true
  },
  "peerDependencies": {
    "stylelint": ">=8.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "release": {
    "analyzeCommits": {
      "path": "sr-commit-analyzer",
      "preset": "metahub",
      "releaseRules": "conventional-changelog-metahub/release-rules"
    },
    "generateNotes": {
      "path": "sr-release-notes-generator",
      "preset": "metahub"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/vanduynslagerp/stylelint-config-pretty.git"
  },
  "scripts": {
    "clean": "rimraf coverage && rimraf .nyc_output",
    "cm": "git-cz",
    "codecov": "codecov",
    "commitmsg": "commitlint -e",
    "coverage": "nyc check-coverage",
    "lint": "npm run clean && eslint . package.json test",
    "postcheckout": "yarn install || (rimraf && npm install)",
    "precommit": "npm run lint",
    "prepush": "ava -v",
    "pretest": "npm run clean && npm run lint",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "test": "nyc ava -v"
  }
}