-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.05 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.05 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
51
52
53
54
{
"name": "tps.js",
"version": "0.0.2",
"description": "Javascript library for Twitch PubSub System",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --require should"
},
"repository": {
"type": "git",
"url": "git://github.com/tpsjs/tps.js.git"
},
"keywords": [
"tps",
"twitch",
"twitc.tv",
"stream",
"broadcast",
"pubsub",
"system",
"websocket",
"ws"
],
"files": [
"lib",
"index.js",
"LICENSE"
],
"engines": {
"node": ">=6.0.0"
},
"author": "HiImMikeGaming (mzmiric5)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tpsjs/tps.js/issues"
},
"homepage": "https://github.com/tpsjs/tps.js#readme",
"dependencies": {
"nonce": "^1.0.4",
"ws": "^1.1.1"
},
"devDependencies": {
"hook-std": "^0.2.0",
"istanbul": "^0.4.4",
"mkdirp": "^0.5.1",
"mocha": "^3.0.2",
"rimraf": "^2.5.4",
"should": "^11.0.0",
"uglify-js": "^2.7.0"
}
}