-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "@santima10/jest-chat-reporter",
"version": "0.4.0",
"publishConfig": {
"access": "public"
},
"description": "🃏 A jest reporter for chats like: Twitch, Discord, etc.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"jest",
"twitch",
"twitch chat",
"jest reporter"
],
"scripts": {
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"build": "tsc",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SantiMA10/jest-chat-reporter.git"
},
"author": {
"name": "Santiago Martin Agra",
"email": "[email protected]"
},
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/SantiMA10/jest-chat-reporter/issues"
},
"homepage": "https://github.com/SantiMA10/jest-chat-reporter#readme",
"devDependencies": {
"@jest/reporters": "^27.5.1",
"@next/eslint-plugin-next": "^12.1.0",
"@santima10/eslint-config": "^2.2.0",
"@swc/core": "^1.2.160",
"@swc/jest": "^0.2.20",
"@types/env-ci": "^3.1.1",
"@types/jest": "^27.4.1",
"@types/tmi.js": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.0.0",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
},
"prettier": "@santima10/eslint-config/.prettierrc.json",
"dependencies": {
"env-ci": "^7.1.0",
"tmi.js": "^1.8.5"
}
}