-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.74 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
{
"name": "donationalerts-api",
"description": "Internal DonationAlerts API interaction",
"keywords": [
"da",
"daapi",
"donationalerts",
"donationalerts.ru",
"donation",
"alerts",
"donate",
"twitch",
"api",
"centrifuge",
"centrifugo"
],
"license": "MIT",
"author": "Alex Owl <AlexOwl@protonmail.com> (https://AlexOwl.github.com/)",
"homepage": "https://github.com/AlexOwl/donationalerts-api#readme",
"repository": "AlexOwl/donationalerts-api",
"bugs": {
"email": "AlexOwl@protonmail.com",
"url": "https://github.com/AlexOwl/donationalerts-api/issues"
},
"version": "1.1.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"start": "node lib/index.js",
"start:dev": "ts-node src/index.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/socket.io-client": "^1.4.34",
"@types/ws": "^7.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@babel/runtime": "^7.12",
"centrifuge": "^2.6",
"emittery": "^0.10.0",
"got": "^11.8",
"socket.io-client": "v2-latest",
"ws": "^7.4",
"xhr2": "^0.2"
}
}