-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 880 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
{
"name": "postcss-encode-base64-inlined-images",
"version": "0.0.2",
"description": "PostCSS plugin encode with base64 inlined images",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"base64",
"inline"
],
"author": "Afonso F <[email protected]>",
"license": "MIT",
"repository": "https://github.com/afonsof/postcss-encode-base64-inlined-images",
"bugs": {
"url": "https://github.com/afonsof/postcss-encode-base64-inlined-images/issues"
},
"homepage": "https://github.com/afonsof/postcss-encode-base64-inlined-images",
"dependencies": {
"btoa": "^1.1.2",
"postcss": "^5.0.16"
},
"devDependencies": {
"ava": "^0.12.0",
"eslint": "^2.1.0",
"eslint-config-postcss": "^2.0.0"
},
"scripts": {
"test": "ava && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}