forked from filp/oversmash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1000 Bytes
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
{
"name": "overstat",
"version": "1.4.0",
"license": "MIT",
"homepage": "https://github.com/ryant26/overstat",
"description": "API wrapper for Blizzard's Overwatch player data",
"main": "./lib/index.js",
"keywords": [
"overwatch",
"gaming",
"api",
"client",
"scraper",
"oversmash",
"overstat",
"overstats"
],
"scripts": {
"start": "node lib/index.js",
"test": "./node_modules/mocha/bin/mocha tests/unitTests.js",
"lint": "./node_modules/eslint/bin/eslint.js .",
"build": "npm run lint && npm run test"
},
"dependencies": {
"camelcase": "^4.1.0",
"cheerio": "^0.22.0",
"debug": "^2.6.2",
"no-case": "^2.3.1",
"request": "^2.81.0",
"request-promise": "^4.1.1",
"url-join": "^1.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^3.12.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^5.2.0"
}
}