forked from fregante/iphone-inline-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
63
64
65
66
67
68
{
"name": "iphone-inline-video",
"version": "1.9.3",
"description": "Make videos playable inline on the iPhone (prevents automatic fullscreen)",
"license": "MIT",
"repository": "bfred-it/iphone-inline-video",
"author": "Federico Brigante <[email protected]> (twitter.com/bfred_it)",
"keywords": [
"browser",
"iphone",
"ios",
"play",
"video",
"inline",
"fullscreen",
"full screen",
"ipod",
"autoplay",
"multiple",
"audio",
"sound",
"canvas",
"gif"
],
"files": [
"dist/iphone-inline-video.common-js.js",
"dist/iphone-inline-video.es-modules.js",
"dist/iphone-inline-video.browser.js"
],
"main": "dist/iphone-inline-video.common-js.js",
"jsnext:main": "dist/iphone-inline-video.es-modules.js",
"scripts": {
"build:js": "bfred-npm-bundler iphone-inline-video makeVideoPlayableInline",
"build": "npm-run-all --silent jsfix build:*",
"jsfix": "xo --fix",
"watch:server": "browser-sync start --startPath docs --no-ghost-mode --reload-delay 300 --no-open --server --files 'dist/*.browser.js,docs/**'",
"watch:build": "onchange 'index.js' 'lib/*' -i -- npm run build",
"watch": "npm-run-all --parallel --silent watch:*",
"prepublish": "npm run build",
"test": "xo; npm run build"
},
"devDependencies": {
"bfred-npm-bundler": "^7.1.1",
"browser-sync": "^2.11.2",
"npm-run-all": "^1.7.0",
"onchange": "^2.2.0",
"xo": "^0.13.0"
},
"xo": {
"esnext": true,
"ignores": [
"docs/**"
],
"env": [
"browser"
],
"rules": {
"prefer-template": 0
}
},
"bugs": {
"url": "https://github.com/bfred-it/iphone-inline-video/issues"
},
"homepage": "https://github.com/bfred-it/iphone-inline-video#readme",
"dependencies": {
"poor-mans-symbol": "^1.0.1"
}
}