-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 1.78 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
{
"name": "stylelint-color-format",
"version": "1.1.0",
"description": "Convert Hex colors to either RGBA or HSLA",
"main": "index.js",
"scripts": {
"lint": "xo",
"test": "node rules/color-format/format.test.js",
"precommit": "lint-staged",
"prettier:check": "prettier '**/*.js' --list-different",
"prettier:fix": "prettier '**/*.js' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipekiss/stylelint-color-format.git"
},
"dependencies": {
"color": "^3.0.0",
"style-search": "^0.1.0"
},
"peerDependencies": {
"stylelint": ">=8.0.0"
},
"devDependencies": {
"eslint-config-stylelint": "^8.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"np": "^2.20.1",
"prettier": "^1.12.1",
"standard-version": "^8.0.1",
"stylelint": ">=8.0.0",
"stylelint-test-rule-tape": "^0.2.0",
"xo": "^0.24.0"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"sass",
"scss"
],
"author": "Filipe Kiss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/filipekiss/stylelint-color-format/issues"
},
"homepage": "https://github.com/filipekiss/stylelint-color-format#readme",
"xo": {
"space": 2,
"extends": [
"stylelint"
],
"prettier": true,
"overrides": [
{
"files": "**/*.test.js",
"rules": {
"node/no-unpublished-require": 0,
"unicorn/import-index": 0
}
}
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "avoid"
},
"lint-staged": {
"*.js": [
"npm test",
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=7"
}
}