-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
72 lines (72 loc) · 1.54 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
71
72
{
"name": "blizzard.js",
"version": "4.5.0",
"author": {
"name": "Ben Weier",
"email": "[email protected]",
"url": "https://benweier.dev"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rimraf ./dist && rollup -c",
"docs": "typedoc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "rollup -c"
},
"keywords": [
"blizzard",
"battlenet",
"battle.net",
"bnet",
"api",
"world of warcraft",
"warcraft",
"wow",
"starcraft",
"sc2",
"diablo",
"d3",
"hs",
"hearthstone",
"ow",
"overwatch"
],
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"axios-mock-adapter": "^1.21.4",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
}
}