-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 1.63 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
{
"name": "postcss-image-inliner",
"version": "7.0.1",
"description": "PostCSS plugin to inline images into css",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"inline",
"image"
],
"files": [
"lib",
"index.js"
],
"author": "Ben Zörb <[email protected]>",
"license": "MIT",
"repository": "bezoerb/postcss-image-inliner",
"bugs": {
"url": "https://github.com/bezoerb/postcss-image-inliner/issues"
},
"homepage": "https://github.com/bezoerb/postcss-image-inliner",
"dependencies": {
"asset-resolver": "^3.0.5",
"debug": "^4.3.4",
"filesize": "^10.1.0",
"svgo": "^3.0.2"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-space": "^0.34.0",
"eslint-plugin-prettier": "^5.0.0",
"finalhandler": "^1.2.0",
"mocha": "^10.2.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"serve-static": "^1.15.0"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"scripts": {
"lint": "eslint **/*.js --fix",
"mocha": "mocha",
"test": "npm run lint && npm run mocha"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": false
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"xo-space",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
]
},
"overrides": []
},
"engines": {
"node": ">=16.10"
}
}