forked from fregante/iphone-inline-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "iphone-inline-video",
"version": "2.0.2",
"description": "Make videos playable inline on the iPhone (prevents automatic fullscreen)",
"license": "MIT",
"repository": "bfred-it/iphone-inline-video",
"author": "Federico Brigante <[email protected]> (bfred.it)",
"keywords": [
"browser",
"iphone",
"ios",
"play",
"video",
"inline",
"fullscreen",
"full screen",
"ipod",
"autoplay",
"multiple",
"audio",
"sound",
"canvas",
"gif"
],
"files": [
"dist"
],
"main": "dist/iphone-inline-video.common-js.js",
"module": "dist/iphone-inline-video.es-modules.js",
"jsnext:main": "dist/iphone-inline-video.es-modules.js",
"scripts": {
"build:js": "bfred-npm-bundler iphone-inline-video enableInlineVideo",
"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' 'lib/*' -i -- npm run build",
"watch": "npm-run-all --parallel --silent watch:*",
"prepublish": "npm run build",
"version": "npm run build; git add dist",
"test": "npm run build"
},
"devDependencies": {
"bfred-npm-bundler": "^8.0.3",
"browser-sync": "^2.18.7",
"npm-run-all": "^4.0.1",
"onchange": "^3.2.1",
"xo": "^0.17.1"
},
"xo": {
"ignores": [
"demo/**"
],
"env": [
"browser"
]
},
"bugs": {
"url": "https://github.com/bfred-it/iphone-inline-video/issues"
},
"homepage": "https://github.com/bfred-it/iphone-inline-video#readme",
"dependencies": {
"intervalometer": "^1.0.0",
"poor-mans-symbol": "^1.0.1"
}
}