You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
901 B
45 lines
901 B
{ |
|
"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" |
|
} |
|
}
|
|
|