-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"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-path .gitignore {integration,src}/**/*.ts",
"test": "jest"
},
"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.7.9"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.7.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier": "3.4.2",
"release-it": "18.1.1",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketSomeone/node-brawlstars.git"
},
"homepage": "https://github.com/SocketSomeone/node-brawlstars#readme"
}