-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "osrs-trade-stats",
"description": "A simple, typed API wrapper for Grand Exchange. Includes daily trade volume data. Wiki | Official API | OSRSbox | Scraped trade volume",
"version": "0.2.9",
"engines": {
"node": ">= 14.15 <15"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint ./src --ext .ts,.tsx",
"test": "ts-mocha -p tsconfig.json tests/test.ts --timeout 10000",
"web-tests": "webpack-dev-server --progress --color --mode development --config webpack.config.js"
},
"files": [
"README.md",
"CHANGELOG.md",
"build/**/*"
],
"keywords": [
"osrs",
"oldschool",
"runescape",
"grand",
"exchange",
"trade",
"volume",
"ge",
"grandexchange",
"api",
"wiki"
],
"repository": "https://github.com/nyan-left/trade-volume-scraper",
"homepage": "https://github.com/nyan-left/trade-volume-scraper",
"author": "nyan-left",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.14",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.165",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"assert": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.1.0",
"html-webpack-plugin": "^4.5.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.12",
"ts-mocha": "^8.0.0",
"tsutils": "^3.17.1",
"typescript": "^4.1.3",
"webpack": "5.21.2",
"webpack-cli": "4.5.0",
"webpack-dev-server": "^3.11.0"
},
"bugs": {
"url": "https://github.com/nyan-left/trade-volume-scraper/issues"
},
"dependencies": {
"tslib": "^2.0.3",
"axios": "^0.21.0",
"lodash": "^4.17.20",
"user-agents": "^1.0.559"
}
}