forked from fregante/object-fit-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "object-fit-images",
"version": "2.5.9",
"description": "Polyfill object-fit and object-position on images on IE9, IE10, IE11, Edge, Safari, ...",
"license": "MIT",
"repository": "bfred-it/object-fit-images",
"author": "Federico Brigante <[email protected]> (twitter.com/bfred_it)",
"bugs": {
"url": "https://github.com/bfred-it/object-fit-images/issues"
},
"homepage": "https://github.com/bfred-it/object-fit-images#readme",
"keywords": [
"polyfill",
"object-fit",
"covers",
"contains",
"css",
"styles",
"internet",
"explorer",
"ies",
"shim",
"shiv",
"fills",
"images",
"srcset",
"backgrounds"
],
"files": [
"dist",
"preprocessors"
],
"main": "dist/ofi.common-js.js",
"module": "dist/ofi.es-modules.js",
"jsnext:main": "dist/ofi.es-modules.js",
"scripts": {
"build:js": "bfred-npm-bundler ofi objectFitImages",
"build": "npm-run-all --silent jsfix build:*",
"jsfix": "xo --fix",
"watch:server": "browser-sync start --startPath demo --no-ghost-mode --reload-delay 300 --no-open --server --files 'dist/*.browser.js,demo/**'",
"watch:build": "onchange 'index.js' --initial -- npm run build -- --continue-on-error",
"watch": "npm-run-all --parallel --silent watch:*",
"prepublish": "npm run build",
"test": "xo; npm run build"
},
"devDependencies": {
"bfred-npm-bundler": "^7.1.2",
"browser-sync": "^2.17.5",
"npm-run-all": "^3.1.1",
"onchange": "^3.0.2",
"xo": "^0.17.0"
},
"xo": {
"esnext": true,
"env": [
"browser"
],
"rules": {
"prefer-template": 0
}
}
}