forked from kuu/hls-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "@flocasts/hls-parser",
"version": "1.3.1",
"description": "A simple library to read/write HLS playlists",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"audit": "npm audit --audit-level high",
"build": "rm -rf ./dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "npx jest --ci",
"coverage": "npx jest --ci --coverage"
},
"repository": {
"url": "git+https://github.com/flocasts/hls-parser.git",
"type": "git"
},
"publishConfig": {
"@flocasts:registry": "https://npm.pkg.github.com"
},
"keywords": [
"HLS",
"media",
"video",
"audio",
"streaming",
"typescript"
],
"author": "Kuu Miyazaki, Harriet Waters, Andrew Bird",
"license": "MIT",
"bugs": {
"url": "https://github.com/flocasts/hls-parser/issues"
},
"homepage": "https://github.com/flocasts/hls-parser#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"fast-deep-equal": "^3.1.3",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}