-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
127 lines (127 loc) · 3 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "stylelint-declaration-block-no-ignored-properties",
"description": "Disallow property values that are ignored due to another property value in the same rule.",
"version": "2.8.0",
"author": {
"name": "Krister Kari",
"url": "https://github.com/kristerkari/"
},
"bugs": {
"url": "https://github.com/kristerkari/stylelint-declaration-block-no-ignored-properties/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-plugin-sort-requires": "^2.1.0",
"jest-cli": "^29.3.1",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"np": "^10.0.5",
"prettier": "^3.0.0",
"stylelint": "^16.1.0"
},
"peerDependencies": {
"stylelint": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"engines": {
"node": ">=6"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"es6": true,
"jest": true,
"node": true
},
"plugins": [
"sort-requires"
],
"globals": {
"testRule": true
},
"rules": {
"eqeqeq": "error",
"no-use-before-define": [
"error",
"nofunc"
],
"sort-requires/sort-requires": "error",
"strict": [
"error",
"global"
],
"arrow-spacing": "error",
"no-var": "error",
"object-shorthand": "error",
"prefer-const": "error",
"template-curly-spacing": "error"
}
},
"files": [
"index.js",
"utils",
"CHANGELOG.md",
"README.md"
],
"homepage": "https://github.com/kristerkari/stylelint-declaration-block-no-ignored-properties#readme",
"jest": {
"clearMocks": true,
"collectCoverage": false,
"collectCoverageFrom": [
"index.js"
],
"coverageDirectory": "./coverage/",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"testEnvironment": "node",
"setupFiles": [
"./jest-setup.js"
]
},
"keywords": [
"css",
"less",
"lint",
"linter",
"scss",
"stylelint",
"stylelint-plugin",
"sugarss"
],
"license": "MIT",
"lint-staged": {
"**/*.{js,json}": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kristerkari/stylelint-declaration-block-no-ignored-properties.git"
},
"scripts": {
"jest": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"lint": "eslint . --ignore-path .gitignore",
"precommit": "lint-staged",
"pretest": "npm run lint",
"prettify": "prettier --write '**/*.{js,json}'",
"release": "np",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage"
}
}