-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 876 Bytes
/
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
{
"name": "mixerclient",
"version": "1.0.0",
"description": "Friendly Mixer streaming service API client",
"main": "index.js",
"scripts": {
"test": "nyc ./node_modules/.bin/mocha --reporter mocha-circleci-reporter test/setup.js test/channel.js test/message.js test/user.js test/vote.js test/misc.js"
},
"author": "Connor McFarlane <[email protected]> (https://connormcf.com)",
"license": "MIT",
"keywords": [
"mixer",
"stream",
"chat",
"beam-client",
"beam-client-node"
],
"repository": {
"type": "git",
"url": "https://github.com/connormcf/mixerclient.git"
},
"dependencies": {
"beam-client-node": "^0.13.0"
},
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"mocha": "^3.5.0",
"mocha-circleci-reporter": "0.0.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.1.0"
}
}