-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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": "mumble-client",
"version": "1.3.0",
"description": "Mumble protocol client library",
"main": "index.js",
"scripts": {
"compile": "node_modules/.bin/babel -d lib/ src/",
"prepublish": "npm run compile",
"mocha": "node_modules/.bin/mocha --compilers js:babel-core/register",
"test": "npm run compile && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johni0702/mumble-client.git"
},
"author": "Jonas Herzig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johni0702/mumble-client/issues"
},
"homepage": "https://github.com/johni0702/mumble-client#readme",
"files": [
"index.js",
"lib"
],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"mocha-standard": "^1.0.0",
"standard": "^8.0.0"
},
"dependencies": {
"drop-stream": "^0.1.1",
"mumble-streams": "0.0.4",
"promise": "^7.1.1",
"reduplexer": "^1.1.0",
"remove-value": "^1.0.0",
"rtimer": "^0.1.0",
"stats-incremental": "^1.2.1",
"through2": "^2.0.2"
}
}