-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "twitch-spambot",
"version": "2.0",
"description": "An automated twitch spam user",
"private": true,
"author": "Paweł Mendroch",
"license": "MIT",
"main": "index.js",
"dependencies": {
"axios": "^0.27.2",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"request": "^2.88.2",
"string-similarity": "^4.0.4",
"tmi.js": "^1.7.5"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/request": "^2.48.5",
"@types/string-similarity": "^4.0.0",
"@types/tmi.js": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-rewire-ts": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"lint-staged": "^10.5.3",
"mockdate": "^3.0.2",
"nodemon": "^2.0.18",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"scripts": {
"tsc": "tsc",
"start": "node src/index.js",
"start:dev": "node build/src/index.js",
"dev": "ts-node-dev src/index.ts",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:coverage": "jest --passWithNoTests --no-cache --silent --coverage --runInBand",
"test:badges": "yarn test:coverage && jest-coverage-badges --input ./coverage/coverage-summary.json --output ./badges",
"lint": "eslint --ext .ts . --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx}": [
"eslint --fix",
"git add ."
]
}
}