-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.7 KB
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
{
"name": "postcss-plugin-matcher",
"version": "0.1.4",
"description": "PostCSS plugin for limit plugins matching",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "airkro@qq.com"
},
"keywords": [
"exclude",
"filter",
"glob",
"ignore",
"include",
"match",
"postcss",
"postcss-plugin",
"regex",
"wildcard"
],
"homepage": "https://github.com/best-shot/postcss-plugin-matcher",
"repository": {
"type": "git",
"url": "https://github.com/best-shot/postcss-plugin-matcher.git"
},
"bugs": {
"url": "https://github.com/best-shot/postcss-plugin-matcher/issues"
},
"main": "index.cjs",
"files": [],
"scripts": {
"lint:staged": "nice-move lint staged",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm test",
"snapshot": "ava --fail-fast -u -w",
"test": "ava --fail-fast"
},
"dependencies": {
"picomatch": "^2.3.1",
"slash": "^3.0.0"
},
"devDependencies": {
"@bring-it/npm": "^0.3.9",
"@nice-move/cli": "^0.10.14",
"@nice-move/eslint-config-base": "^0.9.24",
"@nice-move/prettier-config": "^0.9.8",
"ava": "^5.3.1",
"eslint": "^8.53.0",
"eslint-plugin-ava": "^14.0.0",
"garou": "^0.6.18",
"prettier": "^3.1.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
},
"engines": {
"node": ">=16.13.0 || ^12.22.0 || ^14.17.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@8.10.0",
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"nice-move": {
"import-groups": "nice-move-preset"
},
"prettier": "@nice-move/prettier-config"
}