forked from postcss/postcss-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 928 Bytes
/
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
{
"name": "@entrylabs/postcss-url",
"version": "8.0.1",
"description": "PostCSS plugin to rebase or inline on url().",
"private": false,
"keywords": [
"css",
"postcss",
"postcss-plugin",
"url",
"rebase",
"inline",
"base64",
"assets"
],
"author": "Entrylabs",
"license": "MIT",
"repository": "https://github.com/entrylabs/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"
}
}