This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
131 lines (131 loc) · 3.35 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "postcss-preset-env",
"version": "7.0.1",
"description": "Convert modern CSS into something browsers understand",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "csstools/postcss-preset-env",
"homepage": "https://github.com/csstools/postcss-preset-env#readme",
"bugs": "https://github.com/csstools/postcss-preset-env/issues",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "npx rollup -c .rollup.js",
"build:watch": "npx rollup -c .rollup.js --watch",
"lint": "npx eslint --cache src",
"lint:fix": "npx eslint --cache --fix",
"pretest": "npm install && npm run build",
"test": "npm run lint && npm run tape",
"tape": "npx postcss-tape",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"postcss": "^8.3"
},
"dependencies": {
"autoprefixer": "^10.4.0",
"browserslist": "^4.17.5",
"caniuse-lite": "^1.0.30001272",
"css-blank-pseudo": "^2.0.0",
"css-has-pseudo": "^2.0.0",
"css-prefers-color-scheme": "^5.0.0",
"cssdb": "^5.0.0",
"postcss": "^8.3",
"postcss-attribute-case-insensitive": "^5.0.0",
"postcss-color-functional-notation": "^4.0.1",
"postcss-color-hex-alpha": "^8.0.0",
"postcss-color-rebeccapurple": "^7.0.0",
"postcss-custom-media": "^8.0.0",
"postcss-custom-properties": "^12.0.0",
"postcss-custom-selectors": "^6.0.0",
"postcss-dir-pseudo-class": "^6.0.0",
"postcss-double-position-gradients": "^3.0.1",
"postcss-env-function": "^4.0.2",
"postcss-focus-visible": "^6.0.1",
"postcss-focus-within": "^5.0.1",
"postcss-font-variant": "^5.0.0",
"postcss-gap-properties": "^3.0.0",
"postcss-image-set-function": "^4.0.2",
"postcss-initial": "^4.0.1",
"postcss-lab-function": "^4.0.1",
"postcss-logical": "^5.0.0",
"postcss-media-minmax": "^5.0.0",
"postcss-nesting": "^10.0.2",
"postcss-overflow-shorthand": "^3.0.0",
"postcss-page-break": "^3.0.4",
"postcss-place": "^7.0.1",
"postcss-pseudo-class-any-link": "^7.0.0",
"postcss-replace-overflow-wrap": "^4.0.0",
"postcss-selector-not": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"eslint": "^8.1.0",
"postcss-simple-vars": "^6.0.3",
"postcss-tape": "^6.0.1",
"pre-commit": "^1.2.2",
"rollup": "^2.58.3",
"rollup-plugin-babel": "^4.4.0"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": "maintained node versions"
}
]
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"root": true
},
"rollup": {
"input": "src/postcss.js",
"plugins": [
"rollup-plugin-babel"
],
"output": [
{
"exports": "default",
"file": "dist/index.js",
"format": "cjs"
},
{
"file": "dist/index.mjs",
"format": "esm"
}
]
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"specifications",
"specs",
"features",
"lists",
"stages",
"w3c",
"csswg",
"future",
"next"
]
}