-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "node-fdkaac",
"description": "fdkaac/libfdk-aac AAC/M4A encoder for Node.js",
"version": "1.4.1",
"homepage": "https://github.com/devowlio/node-fdkaac",
"repository": {
"type": "git",
"url": "git+https://github.com/devowlio/node-fdkaac.git"
},
"bugs": {
"url": "https://github.com/devowlio/node-fdkaac/issues"
},
"author": {
"name": "Jan Karres",
"email": "[email protected]",
"url": "https://jankarres.com/"
},
"contributors": [
{
"name": "devowl.io GmbH",
"email": "[email protected]"
}
],
"keywords": [
"aac",
"m4a",
"fdkaac",
"libfdk-aac",
"Fraunhofer FDK AAC",
"encoder",
"audio"
],
"license": "ISC",
"engines": {
"node": ">=12.20"
},
"scripts": {
"build": "tsc",
"test": "./node_modules/.bin/mocha"
},
"files": [
"lib/build/",
"temp/",
"index.js",
"index.d.ts",
"install.sh",
"README.md"
],
"devDependencies": {
"@types/chai": "~4.2.21",
"@types/fs-extra": "~9.0.12",
"@types/mocha": "~8.2.2",
"@types/node": "^14.14.9",
"chai": "~4.3.4",
"fs-extra": "~10.0.0",
"mocha": "~8.4.0",
"ts-node": "~10.2.1",
"typescript": "~4.3.5"
}
}