This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 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
{
"name": "blizzapi",
"version": "2.6.5",
"description": "Flexible and feature-rich library for easy access to Blizzard Battle.net APIs",
"main": "dist/blizzapi.js",
"browser": "dist/blizzapi.js",
"typings": "dist/blizzapi.d.ts",
"scripts": {
"prebuild": "npm run lint && npm run checkFormat && npm run test:cov && npm run clean",
"build": "npm run compile",
"checkFormat": "prettier --check .",
"clean": "rimraf dist/*",
"clearTestCache": "jest --clearCache",
"compile": "rollup -c",
"dev": "tsc -w --project tsconfig.json",
"format": "prettier --write .",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:fixCached": "eslint --cache --fix",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "jest",
"test:cov": "jest --coverage"
},
"lint-staged": {
"package.json": "sort-package-json",
"*.{js,jsx,ts,tsx}": "npm run lint:fixCached",
"*.{js,jsx,ts,tsx,md,html,css}": "npm run format"
},
"dependencies": {
"axios": "^1.7.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"esbuild": "^0.23.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"sort-package-json": "^2.10.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}