This repository has been archived by the owner on Nov 20, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "iphone-inline-video",
"version": "2.2.2",
"description": "Make videos playable inline on the iPhone (prevents automatic fullscreen)",
"keywords": [
"audio",
"autoplay",
"browser",
"canvas",
"full screen",
"fullscreen",
"gif",
"inline",
"ios",
"iphone",
"ipod",
"multiple",
"play",
"sound",
"video"
],
"repository": "fregante/iphone-inline-video",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (bfred.it)",
"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": "npm-run-all --continue-on-error --silent jsfix build:*",
"build:js": "bfred-npm-bundler iphone-inline-video enableInlineVideo",
"jsfix": "xo --fix",
"prepublish-only": "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' 'lib/*' -i -- npm-run-all --silent build:*",
"watch:server": "browser-sync start --startPath demo --no-ghost-mode --reload-delay 300 --no-open --server --files 'dist/iphone-inline-video.js,demo/**'"
},
"xo": {
"env": [
"browser"
],
"ignores": [
"demo/**"
]
},
"dependencies": {
"intervalometer": "^1.0.4",
"poor-mans-symbol": "^1.0.1"
},
"devDependencies": {
"bfred-npm-bundler": "^8.1.0",
"browser-sync": "^2.18.12",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"xo": "^0.18.2"
}
}