-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.96 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
{
"name": "stylelint-browser-compat",
"version": "1.0.0-beta.140",
"description": "Yet another linter rule to detect compatibility of CSS features.",
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"linter",
"compatibility"
],
"homepage": "https://github.com/3846masa/stylelint-browser-compat#readme",
"bugs": {
"url": "https://github.com/3846masa/stylelint-browser-compat/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/3846masa/stylelint-browser-compat.git"
},
"funding": "https://github.com/sponsors/3846masa",
"license": "MIT",
"author": "3846masa <[email protected]>",
"main": "lib/index.js",
"files": [
"lib",
"!**/__tests__"
],
"scripts": {
"prebuild": "pnpm run clean",
"build": "babel src --out-dir lib --extensions .js,.ts --ignore \"**/*.d.ts\"",
"clean": "rimraf lib",
"format": "pnpm run --sequential \"/^format:.*/\"",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"semantic-release": "semantic-release",
"pretest": "pnpm run build",
"test": "jest"
},
"dependencies": {
"@mdn/browser-compat-data": "5.6.13",
"array.prototype.at": "1.1.3",
"lodash.get": "4.4.2",
"postcss-media-query-parser": "0.2.3",
"postcss-selector-parser": "7.0.0",
"postcss-value-parser": "4.2.0",
"semver": "7.6.3",
"string.prototype.at": "1.0.6",
"ts-results": "3.3.0",
"zod": "3.23.8"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#282fd19b1da2be0781b37411898a5714d0cd2b90",
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/common-tags": "1.8.4",
"@types/eslint": "9.6.1",
"@types/fs-extra": "11.0.4",
"@types/lodash.get": "4.4.9",
"@types/semver": "7.5.8",
"babel-jest": "29.7.0",
"babel-plugin-module-resolver": "5.0.2",
"babel-plugin-polyfill-es-shims": "0.10.6",
"browserslist": "4.24.2",
"common-tags": "1.8.2",
"fs-extra": "11.2.0",
"jest": "29.7.0",
"jest-light-runner": "0.6.0",
"jest-preset-stylelint": "7.1.0",
"postcss": "8.4.49",
"rimraf": "5.0.10",
"semantic-release": "19.0.5",
"stylelint": "16.10.0",
"typescript": "5.6.3"
},
"peerDependencies": {
"browserslist": ">=4.20.3",
"stylelint": ">=14.8.5"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@semantic-release/[email protected]": "patches/@[email protected]"
}
}
}