-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "codec-parser",
"version": "2.5.0",
"description": "Library that parses raw data from audio codecs into frames containing data, header values, duration, and other information.",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"mp3",
"mpeg",
"aac",
"aacp",
"flac",
"opus",
"vorbis",
"ogg",
"ogg-flac",
"ogg-opus",
"ogg-vorbis"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest --maxWorkers=100% --coverage --no-color 2> test-results.txt && cat test-results.txt",
"format": "prettier --cache --write \"**/*.js\" --write \"package.json\" --write \"**/*.d.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/eshaz/codec-parser.git"
},
"author": {
"name": "Ethan Halsall",
"email": "ethanhalsall@pm.me"
},
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/eshaz/codec-parser/issues"
},
"type": "module",
"sideEffects": false,
"homepage": "https://github.com/eshaz/codec-parser#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"prettier": "^3.3.3"
}
}