-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.82 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
70
{
"name": "@varandas/clash-royale-api",
"version": "0.0.0-development",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/AndreVarandas/clash-royale-api",
"author": "André Varandas <[email protected]>",
"license": "MIT",
"description": "A Clash Royale API official wrapper for seamless integration with your applications.",
"keywords": [
"clash",
"royale",
"api",
"official",
"wrapper",
"game development"
],
"bugs": {
"url": "https://github.com/AndreVarandas/clash-royale-api/issues"
},
"homepage": "https://github.com/AndreVarandas/clash-royale-api#readme",
"scripts": {
"commit": "npx git-cz",
"test": "jest --config jest.config.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"cz-conventional-changelog": "3.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.1"
},
"files": [
"lib/**/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}