forked from kuu/hls-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.66 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
{
"name": "hls-parser",
"version": "0.10.6",
"description": "A simple library to read/write HLS playlists",
"main": "index.js",
"browser": "dist/hls-parser.min.js",
"scripts": {
"lint": "xo",
"type-check": "tsc --noEmit",
"audit": "npm audit --audit-level high",
"build": "rm -fR ./dist; webpack --mode development ; webpack --mode production",
"test": "npm run lint && npm run build && npm run audit && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuu/hls-parser.git"
},
"keywords": [
"HLS",
"media",
"video",
"audio",
"streaming"
],
"author": "Kuu Miyazaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuu/hls-parser/issues"
},
"homepage": "https://github.com/kuu/hls-parser#readme",
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@tsconfig/node16": "^1.0.4",
"ava": "^5.2.0",
"babel-loader": "^9.1.2",
"eslint-plugin-unicorn": "^47.0.0",
"rewire": "^6.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1",
"xo": "^0.54.2"
},
"ava": {
"typescript": {
"compile": "tsc",
"extensions": ["ts", "js"],
"rewritePaths": {}
}
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"arrow-body-style": 0,
"ava/no-ignored-test-files": 0,
"camelcase": 0,
"comma-dangle": 0,
"capitalized-comments": 0,
"dot-notation": 0,
"import/extensions": 0,
"import/no-dynamic-require": 0,
"new-cap": 0,
"node/prefer-global/buffer": 0,
"no-bitwise": 0,
"no-cond-assign": 0,
"no-mixed-operators": 0,
"no-multi-assign": 0,
"operator-linebreak": 0,
"n/prefer-global/buffer": 0,
"padding-line-between-statements": 0,
"quotes": 0,
"unicorn/catch-error-name": 0,
"unicorn/filename-case": 0,
"unicorn/no-lonely-if": 0,
"unicorn/no-useless-spread": 0,
"unicorn/no-zero-fractions": 0,
"unicorn/numeric-separators-style": 0,
"unicorn/prefer-code-point": 0,
"unicorn/prefer-module": 0,
"unicorn/prefer-switch": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/switch-case-braces": 0
},
"overrides": [
{
"files": "test/**/*.js",
"rules": {
"unicorn/no-array-push-push": 0
}
},
{
"files": "*.ts",
"rules": {
"n/file-extension-in-import": 0,
"@typescript-eslint/array-type": 1,
"@typescript-eslint/ban-types": 1,
"@typescript-eslint/comma-dangle": 0,
"@typescript-eslint/dot-notation": 0,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/object-curly-spacing": 0,
"@typescript-eslint/padding-line-between-statements": 0,
"@typescript-eslint/prefer-optional-chain": 1,
"@typescript-eslint/prefer-nullish-coalescing": 0,
"@typescript-eslint/quotes": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"@typescript-eslint/restrict-plus-operands": 0,
"unicorn/prefer-export-from": 0
}
}
],
"settings": {
"import/resolver": {
"node": {}
}
}
}
}