-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "oversmash",
"version": "1.6.1",
"license": "MIT",
"homepage": "https://github.com/filp/oversmash",
"description": "API wrapper for Blizzard's Overwatch player data",
"main": "./build/src/index.js",
"type": "module",
"types": "./build/src/index.d.ts",
"keywords": [
"overwatch",
"gaming",
"api",
"client",
"scraper",
"oversmash"
],
"scripts": {
"start": "babel-node lib/index.js",
"test": "DEBUG=oversmash:* ts-node tests/suite.ts",
"snapshot": "DEBUG=oversmash:snapshot ts-node tests/snapshot.ts",
"build": "tsc -b",
"lint": "eslint .",
"prepack": "yarn lint && yarn test && yarn build"
},
"dependencies": {
"camelcase": "^6.0.0",
"cheerio": "^1.0.0-rc.5",
"debug": "^4.1.1",
"no-case": "^3.0.4",
"node-fetch": "^3.2.10",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.11.2",
"@types/object-path": "^0.11.1",
"@types/traverse": "^0.6.32",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"object-path": "^0.11.5",
"prettier": "^2.7.1",
"traverse": "^0.6.6",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}