-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.08 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.08 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
{
"name": "gulp-autoprefixer",
"version": "10.0.0",
"description": "Prefix CSS",
"license": "MIT",
"repository": "sindresorhus/gulp-autoprefixer",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"gulpplugin",
"autoprefixer",
"postcss",
"css",
"prefix",
"prefixes",
"stylesheet",
"preprocess",
"postcss-runner"
],
"dependencies": {
"autoprefixer": "^10.4.21",
"gulp-plugin-extras": "^1.1.0",
"postcss": "^8.5.6",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"ava": "^6.4.1",
"gulp-sourcemaps": "^3.0.0",
"p-event": "^7.0.0",
"vinyl": "^3.0.1",
"xo": "^1.2.2"
},
"peerDependencies": {
"gulp": ">=4"
},
"peerDependenciesMeta": {
"gulp": {
"optional": true
}
}
}