This repository has been archived by the owner on Aug 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 1.44 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "twitch-chatlog",
"version": "7.0.0",
"description": "Fetch the chat log to a Twitch VOD.",
"main": "lib/index.js",
"bin": {
"twitch-chatlog": "bin/twitch-chatlog"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "npm run lint && nyc ava",
"lint": "eslint lib/* bin/* test/* --ext js,json",
"start": "node bin/twitch-chatlog"
},
"keywords": [
"twitch",
"vod",
"log",
"chat",
"replay"
],
"author": "Martin Giger (https://humanoids.be)",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"iterm2-version": "^4.2.0",
"node-fetch": "^2.6.1",
"string-replace-async": "^2.0.0",
"term-img": "^5.0.0",
"yargs": "^17.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/freaktechnik/twitch-chatlog"
},
"homepage": "https://github.com/freaktechnik/twitch-chatlog",
"bugs": {
"url": "https://github.com/freaktechnik/twitch-chatlog/issues"
},
"preferGlobal": true,
"devDependencies": {
"@ava/babel": "^2.0.0",
"@freaktechnik/eslint-config-node": "^8.0.2",
"@freaktechnik/eslint-config-test": "^8.0.2",
"ava": "^3.15.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"express": "^4.17.1",
"nyc": "^15.1.0",
"stream-to-array": "^2.3.0"
},
"sideEffects": false,
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"ava": {
"files": [
"test/*.js"
],
"babel": true
}
}