-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.61 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
{
"name": "stylelint-no-browser-hacks",
"version": "2.0.0",
"description": "Stylelint plugin for stylehacks linting.",
"keywords": [
"no-browser-hacks",
"stylehacks",
"stylelint",
"stylelint-plugin"
],
"author": {
"name": "Filippo Tessarotto",
"email": "[email protected]",
"url": "https://github.com/Slamdunk/"
},
"license": "MIT",
"repository": "Slamdunk/stylelint-no-browser-hacks",
"bugs": {
"url": "https://github.com/Slamdunk/stylelint-no-browser-hacks/pulls"
},
"homepage": "https://github.com/Slamdunk/stylelint-no-browser-hacks",
"files": [
"lib/"
],
"dependencies": {
"postcss": "^8.5.3",
"stylehacks": "^7.0.4",
"stylelint": "^16.18.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^7.2.1",
"prettier": "^3.5.3",
"stylelint-test-rule-node": "^0.4.0"
},
"scripts": {
"prettier": "prettier --config prettier.config.mjs --check lib/*.js test/*.js eslint.config.mjs prettier.config.mjs",
"prettier-fix": "prettier --config prettier.config.mjs --write lib/*.js test/*.js eslint.config.mjs prettier.config.mjs",
"eslint": "eslint . --config eslint.config.mjs",
"eslint-fix": "eslint . --config eslint.config.mjs --fix",
"test": "node --test test/index.js"
},
"type": "module",
"main": "lib/index.js"
}