forked from kuu/hls-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.46 KB
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": "hls-parser",
"version": "0.2.4",
"description": "A simple library to read/write HLS playlists",
"main": "index.js",
"scripts": {
"lint": "xo",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "rm -fR ./dist; webpack --mode development ; webpack --mode production",
"test": "npm run lint && npm run build && nsp check && 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",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"ava": "^0.25.0",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.2",
"nsp": "^3.2.1",
"nyc": "^13.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"xo": "^0.22.0"
},
"engines": {
"node": ">=6.0.0"
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"camelcase": 0,
"capitalized-comments": 0,
"dot-notation": 0,
"new-cap": 0,
"no-cond-assign": 0,
"no-mixed-operators": 0,
"no-multi-assign": 0,
"import/no-dynamic-require": 0,
"unicorn/filename-case": 0
}
}
}