-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 949 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 949 Bytes
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
{
"name": "postcss-filter-plugins",
"version": "4.0.0",
"description": "Exclude/warn on duplicated PostCSS plugins.",
"keywords": [
"css",
"postcss",
"postcss-plugin"
],
"homepage": "https://github.com/postcss/postcss-filter-plugins",
"license": "MIT",
"author": "MoOx",
"contributors": [
{
"name": "Ben Briggs",
"email": "beneb.info@gmail.com",
"url": "http://beneb.info"
}
],
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-filter-plugins.git"
},
"files": [
"LICENSE",
"src/index.js"
],
"main": "src/index.js",
"scripts": {
"format": "oxfmt",
"lint": "oxlint && oxfmt --check",
"test": "npm run lint && node --test src/index.test.js",
"release": "npx npmpub"
},
"devDependencies": {
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"postcss": "^8.5.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
}