This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "csgogsi-socket",
"version": "2.7.4",
"description": "",
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./types/index.d.ts",
"exports": {
"import": "./lib/esm/index.js",
"default": "./lib/cjs/index.js"
},
"scripts": {
"test": "jest --coverage --detectOpenHandles",
"make-badges": "istanbul-badges-readme",
"move-build": "mv lib/cjs/*.d.ts types/",
"transpile:cjs": "tsc -p tsconfig.json",
"transpile:esm": "tsc -p tsconfig.esm.json",
"transpile:all": "npm run transpile:cjs && npm run transpile:esm",
"transpile": "npm run transpile:all && npm run post-compile && npm run move-build",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc --write **/*.ts",
"post-compile": "npm run prettier-format && npm run lint && npm test && npm run make-badges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osztenkurden/csgogsi-socket.git"
},
"bugs": {
"url": "https://github.com/osztenkurden/csgogsi-socket/issues"
},
"author": "",
"license": "MIT",
"dependencies": {
"csgogsi": "^2.7.4",
"socket.io-client": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"istanbul-badges-readme": "^1.2.1",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^2.2.1",
"socket.io": "^4.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
}
}