123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "postcss-url",
- "version": "8.0.0",
- "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": ">=6.0.0"
- },
- "dependencies": {
- "mime": "^2.3.1",
- "minimatch": "^3.0.4",
- "mkdirp": "^0.5.0",
- "postcss": "^7.0.2",
- "xxhashjs": "^0.2.1"
- },
- "devDependencies": {
- "chai": "^4.1.2",
- "eslint": "^5.3.0",
- "mocha": "^5.2.0",
- "npmpub": "^4.1.0",
- "postcss-import": "^12.0.0"
- },
- "scripts": {
- "lint": "eslint --fix .",
- "tests": "mocha",
- "test": "npm run lint && npm run tests",
- "release": "npmpub"
- }
- }
|