-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "songbouncer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon --no-stdin",
"watch": "nodemon --no-stdin --watch",
"inspect": "nodemon --inspect src/app.ts",
"test": "jest",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UpDownLeftDie/SongBouncer.git"
},
"author": "Jared Kotoff (UpDownLeftDie)",
"license": "ISC",
"bugs": {
"url": "https://github.com/UpDownLeftDie/SongBouncer/issues"
},
"homepage": "https://github.com/UpDownLeftDie/SongBouncer#readme",
"dependencies": {
"dotenv": "^8.2.0",
"node-fetch": "^2.6.1",
"tmi.js": "^1.7.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"@types/node-fetch": "^2.5.8",
"@types/tmi.js": "^1.7.1",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}