-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 KB
/
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
{
"name": "postcss-object-fit-images",
"version": "1.1.2",
"description": "PostCSS plugin that updates the standard object-fit tag to work with the object-fit-images polyfill for browsers that do not natively support object-fit.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"object-fit",
"object-fit-images",
"polyfill"
],
"author": "Michael Shick <[email protected]>",
"contributors": [
"Federico Brigante"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ronik-design/postcss-object-fit-images"
},
"bugs": {
"url": "https://github.com/ronik-design/postcss-object-fit-images/issues"
},
"homepage": "https://github.com/ronik-design/postcss-object-fit-images",
"dependencies": {
"parse-css-font": "^2.0.2",
"postcss": "^5.0.16",
"quote": "^0.4.0"
},
"devDependencies": {
"ava": "^0.14.0",
"eslint": "^2.1.0",
"eslint-config-postcss": "^2.0.0"
},
"scripts": {
"test": "ava && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}