-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 950 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
44
{
"name": "postcss-url",
"version": "10.1.4",
"description": "PostCSS plugin to rebase or inline on url().",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"url",
"rebase",
"inline",
"base64",
"assets"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/postcss/postcss-url.git",
"main": "src/index.js",
"files": [
"src"
],
"engines": {
"node": ">=22"
},
"dependencies": {
"mime": "^3.0.0",
"minimatch": "^10.0.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"oxlint": "^1.0.0",
"postcss": "^8.0.0",
"postcss-import": "^16.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"scripts": {
"lint": "oxlint --fix",
"tests": "node --test --require ./test/setup.js \"test/lib/*.js\" \"test/type/*.js\" \"test/misc/*.js\"",
"test": "npm run lint && npm run tests",
"release": "npx npmpub"
}
}