-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "@4rk/video-lib",
"version": "1.0.1",
"description": "Helper methods for HTML video playback",
"keywords": [
"hls",
"mi24",
"movingimage",
"movingimage24",
"object-fit",
"subtitle",
"subtitles",
"video"
],
"license": "MIT",
"author": "Fork Unstable Media GmbH <obj@fork.de>",
"files": [
"dist"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/fork/video-lib.git"
},
"scripts": {
"build": "rimraf dist/; babel src -d dist",
"release": "kacl prerelease && kacl release && prettier --write CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint --quiet --fix",
"git add"
]
},
"dependencies": {
"axios": "^0.18.0",
"hls.js": "^0.12.4",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@brightcove/kacl": "^0.1.6",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"rimraf": "^2.6.3"
}
}