forked from LinaTsukusu/youtube-chat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 837 Bytes
/
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
{
"name": "youtube-chat",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/LinaTsukusu/youtube-chat.git",
"author": "LinaTsukusu <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production node dist",
"debug": "tsc && NODE_ENV=development node dist/debug.js"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"youtube",
"chat"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.1",
"tsconfig-paths": "^3.9.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2"
}
}