-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "mumble-client-websocket",
"version": "1.0.0",
"description": "Mumble protocol client library - websocket transport protocol",
"main": "index.js",
"scripts": {
"compile": "node_modules/.bin/babel -d lib/ src/",
"prepare": "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-websocket.git"
},
"author": "Jonas Herzig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johni0702/mumble-client-websocket/issues"
},
"homepage": "https://github.com/johni0702/mumble-client-websocket#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": {
"promise": "^7.1.1",
"websocket-stream": "^3.2.1"
},
"peerDependencies": {
"mumble-client": "^1.0.0"
}
}