forked from negezor/srcds
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "@blastorg/srcds-log-parser",
"version": "1.0.0",
"description": "Log parser for Source Dedicated Server",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf lib && tsc",
"test": "jest --config jest.config.json --no-cache",
"lint": "eslint --ext .ts --ignore-path .gitignore src/**/*.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blastorg/srcds-log-parser.git"
},
"keywords": [
"srcds",
"log",
"parser",
"counter-strike",
"counter-strike-2"
],
"author": "blastorg",
"license": "MIT",
"bugs": {
"url": "https://github.com/blastorg/srcds-log-parser/issues"
},
"homepage": "https://github.com/blastorg/srcds-log-parser#readme",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/release-notes-generator": "^12.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"semantic-release-export-data": "^1.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}