package.json
1.66 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
{
"name": "postcss-browser-comments",
"version": "4.0.0",
"description": "Keep only the CSS you need based on comments and your browserslist",
"author": "Jonathan Neal <csstools@hotmail.com>",
"license": "CC0-1.0",
"repository": "csstools/postcss-browser-comments",
"homepage": "https://github.com/csstools/postcss-browser-comments#readme",
"bugs": "https://github.com/csstools/postcss-browser-comments/issues",
"main": "index.cjs",
"module": "index.mjs",
"files": [
"index.cjs",
"index.cjs.map",
"index.mjs",
"index.mjs.map"
],
"scripts": {
"prepublishOnly": "npm test",
"build": "rollup --config .rollup.js --silent",
"lint": "eslint *.js --cache --ignore-path .gitignore --quiet",
"test": "npm run lint && npm run build && npm run tape",
"tape": "postcss-tape"
},
"engines": {
"node": ">=8"
},
"peerDependencies": {
"browserslist": ">=4",
"postcss": ">=8"
},
"devDependencies": {
"@babel/core": "7.13.16",
"@babel/preset-env": "7.13.15",
"browserslist": "4.1.1",
"eslint": "7.25.0",
"postcss": "8.2.13",
"postcss-tape": "6.0.1",
"pre-commit": "1.2.2",
"rollup": "2.46.0",
"rollup-plugin-babel": "4.3.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"rules": {
"semi": [
"error",
"never"
]
}
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"browserslists",
"browserlists",
"browsers",
"lists",
"support",
"caniuse",
"target"
]
}