-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "@muffinking-jpeg/wg-api-lib",
"description": "Lib for obtaining player statistics in games made by Wargaming.net",
"version": "1.1.4",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc",
"watch": "tsc-watch --onSuccess \"npm run test\"",
"lint": "eslint . --ext .ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"wg",
"wargaming",
"world of tanks",
"world of tanks blitz",
"blitz",
"api",
"lib",
"wot",
"wotb",
"wot blitz"
],
"author": "MuffinKing-jpeg",
"license": "ISC",
"type": "module",
"repository": "https://github.com/MuffinKing-jpeg/wg-api-lib.git",
"homepage": "https://muffinking-jpeg.github.io/wg-api-lib/",
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.19",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"axios": "^0.27.2"
},
"files": [
"lib/**/*"
]
}