This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "node-brawlstars",
"description": "Javascript library to communicate with BrawlStars API",
"version": "4.0.5",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"prepublish:npm": "npm run build",
"publish:npm": "release-it",
"prepublish:dev": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"prepare": "husky",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern .gitignore {integration,src}/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:ci": "jest --ci --passWithNoTests --coverage"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Alexey Filippov <socket.someone@gmail.com>",
"license": "MIT",
"keywords": [
"brawlstars",
"api",
"http",
"https"
],
"dependencies": {
"axios": "1.11.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-angular": "19.8.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "24.1.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"husky": "9.1.7",
"jest": "^30.0.0",
"prettier": "3.6.2",
"release-it": "19.0.4",
"rimraf": "6.0.1",
"ts-jest": "^29.3.2",
"typescript": "5.8.3",
"typescript-eslint": "^8.21.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketSomeone/node-brawlstars.git"
},
"homepage": "https://github.com/SocketSomeone/node-brawlstars#readme"
}