-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 Bytes
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
{
"name": "h264-interp-utils",
"version": "1.1.1",
"description": "H.264 data streams and metadata are tricky to interpret. This Javascript package helps.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OllieJones/h264-interp-utils.git"
},
"keywords": [
"h264",
"AVC",
"video",
"annexB",
"Golomb",
"SPS",
"PPS",
"avcC"
],
"author": "Oliver Jones <olliejones@gmail.com> (https://plumislandmedia.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/OllieJones/h264-interp-utils/issues"
},
"homepage": "https://github.com/OllieJones/h264-interp-utils#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.16",
"babel-plugin-transform-class-properties": "^6.24.1",
"jest": "^26.6.3",
"standard": "^16.0.3"
}
}