-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "dota-liquipedia-api-client",
"version": "1.0.0",
"description": "An API client to read data from Liquipedia for the video game Dota",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Flusaka/dota-liquipedia-api-client.git"
},
"keywords": [],
"author": "Neil Armitage",
"license": "MIT",
"bugs": {
"url": "https://github.com/Flusaka/dota-liquipedia-api-client/issues"
},
"homepage": "https://github.com/Flusaka/dota-liquipedia-api-client#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"jest-mock-extended": "^2.0.4",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^0.25.0",
"node-html-parser": "^5.2.0"
}
}