-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 KB
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
{
"name": "wotblitz",
"version": "1.3.2",
"description": "Fetch-based wrapper of the World of Tank Blitz API.",
"main": "./wotblitz.js",
"types": "./wotblitz.d.ts",
"files": [
"CONTRIBUTING.md",
"request.js",
"request.d.ts",
"test/request.js",
"test/wotblitz.js",
"wotblitz.js",
"wotblitz.d.ts"
],
"scripts": {
"build": "tsc",
"cover": "nyc tape test/*.js",
"lint": "eslint -f tap request.ts wotblitz.ts test",
"prepare": "tsc",
"start": "APPLICATION_ID=a125d0975020cd5d594f5b940fdaae60 node",
"test": "tape test/*.js",
"test:ci": "tape test/*.js | tap-xunit > test-results.xml"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeMan99/wotblitz.js"
},
"keywords": [
"blitz",
"tank",
"tanks",
"wargaming",
"wargaming.net",
"wot",
"wotb",
"wotblitz"
],
"author": "Cody A. Taylor <codemister99@yahoo.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeMan99/wotblitz.js/issues"
},
"homepage": "https://github.com/CodeMan99/wotblitz.js",
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.31.0",
"mockery": "^2.0.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"tap-xunit": "^2.4.1",
"tape": "^5.6.1",
"typescript": "^4.9.4"
}
}