forked from benweier/blizzard.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.34 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
{
"author": "Ben Weier <[email protected]> (https://github.com/benweier)",
"name": "blizzard.js",
"description": "A Node.js library for the Blizzard Community Platform API",
"version": "2.3.2",
"homepage": "https://github.com/benweier/blizzard.js",
"license": "MIT",
"keywords": [
"blizzard",
"battlenet",
"battle.net",
"bnet",
"api",
"world of warcraft",
"warcraft",
"wow",
"starcraft",
"sc2",
"diablo",
"d3"
],
"repository": {
"type": "git",
"url": "git://github.com/benweier/blizzard.js.git"
},
"bugs": {
"url": "https://github.com/benweier/blizzard.js/issues"
},
"main": "index.js",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"docdash": "~1.0.0",
"eslint": "^5.0.0",
"eslint-plugin-jest": "^22.0.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"lib/",
"API.md",
"README.md",
"LICENSE",
"index.js"
],
"scripts": {
"docs": "./node_modules/.bin/jsdoc -c ./conf.json",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc.js --ignore-path ./.eslintignore . --fix",
"codecov": "./node_modules/.bin/codecov",
"test": "./node_modules/.bin/jest"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
}
}