-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"name": "one-player",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "src/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rubik build --lib",
"build:demo": "cross-env BUILD_DEMO=true rubik build --lib",
"start": "rubik serve --lib",
"lint": "rubik lint --fix",
"stylelint": "rubik stylelint --fix",
"test": "yarn lint",
"release": "yarn test && standard-version"
},
"keywords": [
"player",
"one player",
"hls",
"m3u8"
],
"author": "Fancy <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fancyboynet/one-player.git"
},
"bugs": {
"url": "https://github.com/fancyboynet/one-player/issues"
},
"devDependencies": {
"art-template-loader": "^1.4.3",
"cross-env": "^6.0.3",
"hls.js": "^0.13.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"rubik-cli": "^1.6.0",
"standard-version": "^7.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "rubik check-package",
"post-checkout": "rubik check-package",
"commit-msg": "rubik commitlint"
}
},
"lint-staged": {
"src/**/*.{js,jsx,vue}": [
"yarn run lint",
"git add"
],
"src/**/*.{css,scss,sass,less,vue}": [
"yarn run stylelint",
"git add"
]
},
"dependencies": {
"art-template": "^4.13.2",
"custom-event-polyfill": "^1.0.7"
}
}