forked from postcss/postcss-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 823 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
{
"name": "postcss-url",
"version": "5.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": {
"type": "git",
"url": "https://github.com/postcss/postcss-url.git"
},
"files": [
"index.js"
],
"dependencies": {
"directory-encoder": "^0.7.2",
"js-base64": "^2.1.5",
"mime": "^1.2.11",
"mkdirp": "^0.5.0",
"path-is-absolute": "^1.0.0",
"postcss": "^5.0.0",
"reduce-function-call": "^1.0.1"
},
"devDependencies": {
"eslint": "^1.1.0",
"postcss-import": "^7.0.0",
"tape": "^4.0.3"
},
"scripts": {
"test": "eslint . && tape test"
}
}