-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"name": "noodle.js",
"version": "2.0.0",
"homepage": "https://github.com/Gielert/NoodleJS",
"bugs": "https://github.com/Gielert/NoodleJS/issues",
"repository": {
"type": "git",
"url": "https://github.com/Gielert/NoodleJS.git"
},
"engines": {
"node": ">=20.19.4"
},
"description": "A NodeJS mumble client",
"main": "src/Client.js",
"files": [
"src/",
"native/",
"binding.gyp",
"README.md"
],
"scripts": {
"test": "nyc --reporter=text-summary mocha --exit",
"lint": "eslint src --ext .js",
"install": "node-gyp rebuild",
"rebuild": "node-gyp rebuild"
},
"keywords": [
"NodeJS",
"Mumble"
],
"author": "Michiel",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"bluebird": "^3.7.2",
"fluent-ffmpeg": "^2.1.2",
"protobufjs": "^8.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"chai": "^4.2.0",
"eslint": "^8.56.0",
"mocha": "^8.2.0",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.2.0",
"nyc": "^15.1.0"
},
"gypfile": true,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}