-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
147 lines (147 loc) · 4.93 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "playable",
"version": "2.15.4",
"description": "Video player based on HTML5Video",
"keywords": [
"adaptive",
"dash",
"hls",
"html5",
"media",
"mpeg",
"mse",
"player",
"video"
],
"homepage": "https://wix.github.io/playable/",
"bugs": {
"url": "https://github.com/wix/playable/issues",
"email": "oleksiim@wix.com"
},
"repository": {
"type": "git",
"url": "git@github.com:wix/playable.git"
},
"license": "MIT",
"author": {
"name": "Oleksii Makodzeba",
"email": "oleksiim@wix.com"
},
"files": [
"dist",
"src"
],
"main": "dist/statics/playable.bundle.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start": "haste-playable start",
"lint": "npm run tslint:all",
"bundle:playable": "haste-playable bundle playable=./index.ts",
"bundle:playable-with-adapters": "haste-playable bundle playable-dash=./with-dash.ts playable-hls=./with-hls.ts --webpack",
"bundle:test": "haste-playable bundle test=./e2e/index.ts --webpack --mode development",
"bundle:playback-test": "haste-playable bundle playable-test=./e2e/playback-test.ts --mode development",
"bundle:playback-test-with-adapters": "haste-playable bundle playable-test-with-adapters=./e2e/playback-test-with-adapters.ts --webpack --mode development",
"build": "haste-playable clean && haste-playable build && npm run bundle:playable && npm run bundle:playable-with-adapters",
"test": "npm run test:unit",
"documentation": "okidoc-md ./docs/docs.yml ./docs",
"documentation:gitadd": "npm run documentation && git add ./docs",
"documentation:site": "okidoc-site develop ./docs/site.yml",
"documentation:site:build": "npm run documentation && okidoc-site build ./docs/site.yml && build-storybook -o ./sitedist/storybook",
"documentation:site:deploy": "npm run documentation:site:build && gh-pages -d sitedist",
"version": "node scripts/npm-version.js && conventional-changelog -p angular",
"release": "node scripts/npm-release.js",
"tslint": "ts-node node_modules/.bin/tslint -p . -c tslint.json",
"tslint:all": "npm run tslint -- '{src,scripts}/**/*.ts'",
"prettier:all": "prettier --write '{src,scripts,tslint-rules,dev-env}/**/*.{js,ts}'",
"csscomb:all": "csscomb src/.",
"pretest:node": "haste-playable clean && npm run bundle:playable",
"test:node": "node src/e2e/node.js",
"test:unit": "haste-playable test --mocha",
"pretest:playback": "haste-playable clean && npm run bundle:playback-test && npm run bundle:playback-test-with-adapters",
"test:playback": "haste-playable test --karma dev-env/karma.conf.js && haste-playable test --karma dev-env/karma-with-adapters.conf.js",
"precommit": "lint-staged && npm run documentation:gitadd",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"classnames": "^2.2.6",
"dashjs": "^3.2.0",
"eventemitter3": "^4.0.7",
"hls.js": "1.3.5",
"resize-observer-polyfill": "^1.5.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/types": "7.0.0-beta.46",
"@storybook/addon-a11y": "^5.2.1",
"@storybook/addon-knobs": "^5.2.1",
"@storybook/addon-viewport": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/html": "^5.2.1",
"@storybook/theming": "^6.5.8",
"@types/chai": "^4.1.7",
"@types/chance": "^1.0.1",
"@types/chrome": "^0.0.92",
"@types/chromecast-caf-sender": "^1.0.3",
"@types/classnames": "^2.2.7",
"@types/hls.js": "^0.13.3",
"@types/mocha": "^5.2.5",
"@types/node": "^14.14.20",
"@types/sinon": "^5.0.7",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"chai": "~4.1.2",
"chance": "^1.0.16",
"conventional-changelog-cli": "^2.0.11",
"csscomb": "^4.2.0",
"gh-pages": "^1.2.0",
"haste-preset-playable": "github:bodia-uz/haste-preset-playable#v2.2.2",
"husky": "^0.14.3",
"jsdom": "^11.12.0",
"jsdom-global": "^3.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-ios-simulator-launcher": "0.0.4",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"lint-staged": "^7.3.0",
"okidoc-md": "^2.0.0",
"okidoc-site": "^2.0.0",
"prettier": "^1.15.1",
"rgb-hex": "^3.0.0",
"sinon": "^6.3.5",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.3"
},
"publishConfig": {
"logLevel": "verbose",
"registry": "https://registry.npmjs.org/"
},
"haste": {
"preset": "playable",
"presetConfig": {
"exports": "Playable",
"devServer": {
"entry": "./develop.ts",
"port": 5000
}
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"npm run tslint --",
"git add"
],
"*.scss": [
"csscomb -tty-mode --",
"git add"
]
}
}