-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
65
66
67
68
69
{
"name": "csgo-demo-helper",
"version": "1.1.1",
"bin": {
"csgo-demo-helper": "dist/Main.js"
},
"description": "A CLI tool to assist with managing CS:GO demos",
"main": "dist/Main.js",
"types": "dist/Main.d.ts",
"scripts": {
"prepublishOnly": "node node_modules/typescript/bin/tsc",
"prestart": "npm i && echo \"Starting CS:GO Demo Helper\"",
"start": "node node_modules/ts-node/dist/bin.js ./src/Main.ts",
"test": "mocha --trace-warnings src test",
"coverage": "nyc mocha src test"
},
"keywords": [
"counter-strike",
"cs:go",
"csgo",
"demo",
"demos",
"replay",
"voice",
"loopback",
"voice_loopback",
"mute"
],
"author": "Ryan Cloherty",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/IncPlusPlus/csgo-demo-helper.git"
},
"dependencies": {
"@types/ini": "^1.3.30",
"@types/node": "^14.14.7",
"@types/uuid": "^8.3.0",
"@types/wait-on": "^5.2.0",
"axios": "^0.21.0",
"ini": "^1.3.6",
"log4js": "^6.3.0",
"p-defer": "^3.0.0",
"uuid": "^8.3.2",
"wait-on": "^5.2.1"
},
"preferGlobal": true,
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/mitm": "^1.3.3",
"@types/mocha": "^8.0.2",
"@types/mock-fs": "^4.13.0",
"@types/sinon": "^9.0.10",
"axios-mock-adapter": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mitm": "^1.7.1",
"mocha": "^8.1.1",
"mock-fs": "^4.13.0",
"nyc": "^15.1.0",
"sinon": "^9.2.2",
"source-map-support": "^0.5.19",
"ts-mock-imports": "^1.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}