-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "postcss-inline-base64",
"version": "7.3.1",
"description": "PostCSS plugin for encode the file to base64",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"base64",
"file",
"inline",
"postcss-inline-base64"
],
"author": "Thiago Lagden <lagden@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/lagden/postcss-inline-base64",
"repository": "lagden/postcss-inline-base64",
"bugs": {
"url": "https://github.com/lagden/postcss-inline-base64/issues"
},
"type": "module",
"exports": {
".": {
"import": "./src/plugin.js",
"require": "./dist/plugin-wrapper.cjs"
},
"./package.json": "./package.json"
},
"main": "./src/plugin.js",
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=14.17"
},
"scripts": {
"rm": "rm -rf dist",
"eslint": "eslint --config .eslintrc.yml --ext .js --ignore-path .gitignore .",
"pretest": "npm run eslint",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov ava",
"prepublishOnly": "npm run build",
"prebuild": "npm test && npm run rm",
"esbuild": "node ./esbuild.config.js",
"postbuild": "npm run dist:pkg && npm run dist:wrapper",
"dist:pkg": "echo '{\"type\": \"commonjs\"}'> dist/package.json",
"dist:wrapper": "echo \"module.exports = require('./plugin.cjs').default\"> dist/plugin-wrapper.cjs",
"build": "npm run esbuild",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"debug": "4.3.4",
"file-type": "18.2.1",
"got": "12.6.0",
"is-svg": "5.0.0"
},
"devDependencies": {
"@snyk/protect": "1.1140.0",
"ava": "5.2.0",
"c8": "7.13.0",
"esbuild": "0.17.15",
"eslint": "8.37.0",
"eslint-config-xo": "0.43.1",
"eslint-plugin-unicorn": "46.0.0",
"postcss": "8.4.21"
},
"peerDependencies": {
"postcss": ">=8.0.0"
},
"snyk": true
}