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