.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / prettier-stylelint / package.json
1 {
2     "name": "prettier-stylelint",
3     "version": "0.4.2",
4     "description": "code > prettier > stylelint > formatted code",
5     "repository": "hugomrdias/prettier-stylelint",
6     "main": "index.js",
7     "bin": "./cli.js",
8     "author": "Hugo Dias <mail@hugodias.me> (http://hugodias.me/)",
9     "license": "MIT",
10     "keywords": [
11         "stylelint",
12         "prettier",
13         "style",
14         "lint",
15         "linter",
16         "validate",
17         "code style",
18         "strict",
19         "check"
20     ],
21     "scripts": {
22         "test": "nyc ava",
23         "lint": "eslint --cache *.js src/*.js",
24         "validate": "run-p lint test",
25         "precommit": "yarn validate",
26         "version": "yarn changelog && git add CHANGELOG.md",
27         "cov": "yarn test && nyc report --reporter=html && hs coverage -s -o -c-1",
28         "cov:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
29         "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
30     },
31     "devDependencies": {
32         "ava": "^0.22.0",
33         "codecov": "^2.3.0",
34         "conventional-changelog-cli": "^1.3.3",
35         "eslint": "^4.7.1",
36         "eslint-config-halo": "^2.4.1",
37         "http-serve": "^1.0.1",
38         "husky": "^0.14.3",
39         "np": "^2.16.0",
40         "npm-run-all": "^4.1.1",
41         "nyc": "^11.2.1",
42         "stylelint-config-recommended": "^1.0.0"
43     },
44     "dependencies": {
45         "cosmiconfig": "^3.0.1",
46         "debug": "^3.0.1",
47         "get-stdin": "^5.0.1",
48         "globby": "^6.1.0",
49         "ignore": "^3.3.5",
50         "import-local": "^0.1.1",
51         "meow": "^3.7.0",
52         "pify": "^3.0.0",
53         "prettier": "^1.7.0",
54         "resolve-from": "^4.0.0",
55         "stylelint": "^8.1.1",
56         "temp-write": "^3.3.0",
57         "tempy": "^0.2.1",
58         "update-notifier": "^2.2.0"
59     },
60     "eslintConfig": {
61         "extends": "halo/node"
62     },
63     "stylelint": {
64         "extends": [
65             "stylelint-config-recommended",
66             "./config"
67         ],
68         "rules": {
69             "string-quotes": [
70                 "single"
71             ],
72             "indentation": [
73                 4,
74                 {
75                     "except": [
76                         "value"
77                     ]
78                 }
79             ],
80             "color-hex-case": [
81                 "upper"
82             ],
83             "color-hex-length": [
84                 "short"
85             ]
86         }
87     },
88     "prettier": {
89         "printWidth": 80,
90         "tabWidth": 4,
91         "useTabs": false,
92         "semi": false,
93         "singleQuote": true,
94         "trailingComma": "none",
95         "bracketSpacing": true,
96         "jsxBracketSameLine": false
97     }
98 }