-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "battlenet-api-wrapper",
"version": "1.0.5",
"description": "A promised-based Node.js wrapper for the Battle.net Community and Data APIs (supports WoW, WoW Classic, SC2, D3, and Hearthstone).",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc --build tsconfig.json",
"watch:build": "tsc --watch",
"watch:server": "nodemon './dist/battleNetWrapper.js' --watch './dist'",
"start": "npm-run-all clean build --parallel watch:build watch:server --print-label",
"codecov": "./node_modules/.bin/codecov",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "https://github.com/QuadDamn/battlenet-api-wrapper.git"
},
"author": "Shane Jeffery",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.1.1",
"codecov": "^3.6.1",
"documentation": "^12.1.4",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"typescript": "^3.7.4"
},
"dependencies": {
"axios": "^0.19.0",
"jest": "^25.1.0"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
}
}