-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 1.88 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
{
"name": "h264-profile-level-id",
"version": "2.0.0",
"description": "TypeScript utility to process H264 profile-level-id values",
"author": "Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/versatica/h264-profile-level-id.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"npm-scripts.mjs",
"lib"
],
"engines": {
"node": ">=16"
},
"keywords": [
"webrtc",
"rtp",
"h264",
"browser",
"nodejs"
],
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"typescript:build": "node npm-scripts.mjs typescript:build",
"typescript:watch": "node npm-scripts.mjs typescript:watch",
"lint": "node npm-scripts.mjs lint",
"test": "node npm-scripts.mjs test",
"coverage": "node npm-scripts.mjs coverage",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "src/tests/test.*\\.ts",
"transform": {
"^.*\\.ts$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
]
},
"coveragePathIgnorePatterns": [
"src/tests",
"src/Logger"
],
"cacheDirectory": ".cache/jest"
},
"dependencies": {
"@types/debug": "^4.1.12",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"open-cli": "^8.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}