This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
84 lines (84 loc) · 2.85 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dank-twitch-irc",
"version": "4.3.0",
"description": "Twitch IRC library for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"lib"
],
"scripts": {
"build": "tsc && sed -i '1,1 s/types=\"debug-logger\"/path=\"\\.\\.\\/types\\/debug-logger\\/index.d.ts\"/' ./dist/index.d.ts",
"check-format": "prettier --ignore-path .gitignore --check \"**/*.md\" \"**/*.js\" \"**/*.ts\" \"**/*.yml\" \"**/*.json\"",
"reformat": "prettier --ignore-path .gitignore --write \"**/*.md\" \"**/*.js\" \"**/*.ts\" \"**/*.yml\" \"**/*.json\"",
"lint": "eslint --ignore-path .gitignore --format codeframe --ext .ts --ext .js .",
"lintfix": "npm run lint -- --fix",
"test": "nyc mocha",
"clean": "rm -rf ./dist ./docs ./coverage ./.nyc_output ./mochawesome-report",
"docs": "typedoc --excludePrivate --excludeProtected -out ./docs lib/index.ts",
"generate-index": "npx create-ts-index@^1.10.2 create ./lib -w -i '.spec' && npm run reformat",
"precommit": "npm run clean && npm run build && npm run test && npm run lintfix && npm run reformat && npm run lint -- --max-warnings=0",
"generate-readme-toc": "doctoc README.md --github --title '## Table of Contents'"
},
"keywords": [
"twitch",
"irc",
"chat",
"tmi"
],
"author": "Ruben Anders",
"license": "MIT",
"repository": "https://github.com/robotty/dank-twitch-irc",
"dependencies": {
"@types/debug": "^4.1.5",
"@types/duplexify": "^3.6.0",
"debug-logger": "^0.4.1",
"duplexify": "^4.1.1",
"eventemitter3": "^4.0.7",
"lodash.camelcase": "^4.3.0",
"lodash.pickby": "^4.6.0",
"make-error-cause": "^2.3.0",
"ms": "^2.1.3",
"randomstring": "^1.1.5",
"semaphore-async-await": "^1.5.1",
"simple-websocket": "^9.0.0",
"split2": "^3.2.1",
"ts-toolbelt": "^9.1.7"
},
"devDependencies": {
"@types/async-lock": "^1.1.2",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/eventemitter3": "^2.0.2",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.pickby": "^4.6.6",
"@types/mocha": "^8.2.0",
"@types/ms": "^0.7.31",
"@types/node": "^15.0.2",
"@types/randomstring": "^1.1.6",
"@types/simple-websocket": "^7.0.1",
"@types/sinon": "^10.0.0",
"@types/split2": "^2.1.6",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"clarify": "^2.1.0",
"doctoc": "^2.0.0",
"eslint": "^7.16.0",
"mocha": "^8.1.1",
"mocha-junit-reporter": "^2.0.0",
"mochawesome": "^6.1.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"supports-color": "^8.0.0",
"ts-node": "^9.1.1",
"tsd": "^0.14.0",
"typedoc": "^0.20.1",
"typescript": "^4.1.3"
}
}