forked from tmijs/tmi.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.11 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
85
86
87
88
89
90
91
{
"name": "tmi.js-reply-fork",
"version": "1.8.5",
"description": "Javascript library for the Twitch Messaging Interface.",
"keywords": [
"tmi",
"tmijs",
"twitch",
"chat",
"message",
"messaging",
"interface",
"bot"
],
"main": "index.js",
"files": [
"lib",
"types",
"index.js",
"LICENSE"
],
"types": "./types/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"author": "Schmoopiie",
"scripts": {
"test": "run-s eslint test:*",
"eslint": "eslint index.js lib/* test/*",
"eslint-fix": "eslint --fix index.js lib/* test/*",
"test:mocha": "nyc mocha -- --require should --exit",
"build": "run-s build:*",
"build:rimraf": "rimraf ./build",
"build:mkdirp": "mkdirp ./build",
"build:dedupe": "npm dedupe",
"build:browserify": "browserify index.js -o ./build/tmi.js",
"build:uglify": "uglifyjs --compress --mangle --output ./build/tmi.min.js --source-map \"filename='./build/tmi.js.map'\" ./build/tmi.js",
"build:sri": "node sri.js ./build/tmi.js",
"build:sri-min": "node sri.js ./build/tmi.min.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thearturca/tmi.js.git"
},
"bugs": {
"url": "https://github.com/thearturca/tmi.js/issues"
},
"dependencies": {
"node-fetch": "^2.6.1",
"ws": "^7.4.3"
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/preset-env": "7.13.15",
"@types/node-fetch": "2.5.10",
"babelify": "10.0.0",
"browserify": "17.0.0",
"eslint": "7.24.0",
"hook-std": "2.0.0",
"mkdirp": "1.0.4",
"mocha": "8.3.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"should": "13.2.3",
"uglify-js": "3.13.4"
},
"browser": {
"ws": false,
"node-fetch": false
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"homepage": "https://github.com/thearturca/tmi.js/tmi.js#readme",
"directories": {
"lib": "lib",
"types": "types",
"test": "test"
}
}