forked from fregante/object-fit-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "object-fit-images",
"version": "3.2.4",
"description": "Polyfill object-fit and object-position on images on IE9, IE10, IE11, Edge, Safari, ...",
"keywords": [
"backgrounds",
"contains",
"covers",
"css",
"explorer",
"fills",
"ies",
"images",
"internet",
"object-fit",
"polyfill",
"shim",
"shiv",
"srcset",
"styles"
],
"repository": "fregante/object-fit-images",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (bfred.it)",
"files": [
"dist",
"preprocessors"
],
"main": "dist/ofi.common-js.js",
"scripts": {
"build": "npm-run-all --silent jsfix build:*",
"build:js": "bfred-npm-bundler ofi objectFitImages",
"jsfix": "xo --fix",
"prepublish": "npm run build",
"test": "npm run build",
"version": "npm run build; git add dist",
"watch": "npm-run-all --parallel --silent watch:*",
"watch:build": "onchange 'index.js' --initial -- npm run build -- --continue-on-error",
"watch:server": "browser-sync start --startPath demo --no-ghost-mode --reload-delay 300 --no-open --server --files 'dist/*.min.js,demo/**'"
},
"xo": {
"env": [
"browser"
],
"esnext": true,
"rules": {
"prefer-template": 0
}
},
"dependencies": {},
"devDependencies": {
"bfred-npm-bundler": "^8.0.3",
"browser-sync": "^2.17.5",
"npm-run-all": "^4.0.0",
"onchange": "^3.0.2",
"xo": "^0.17.0"
}
}