-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
74 lines (74 loc) · 1.72 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
{
"name": "twisted",
"version": "1.62.2",
"description": "Fetching riot games api data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/*",
"lint:fix": "eslint --fix ./src/**/*",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"example": "ts-node runExamples",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=8.6.0"
},
"keywords": [
"riot",
"lol",
"api",
"wrap",
"riot games",
"league of legends",
"tft",
"teamfight tactics"
],
"repository": {
"type": "git",
"url": "https://github.com/Sansossio/twisted"
},
"author": {
"name": "Julio Sansossio",
"email": "juliosansossio@gmail.com",
"url": "https://github.com/Sansossio"
},
"homepage": "https://github.com/Sansossio/twisted",
"bugs": {
"url": "https://github.com/Sansossio/twisted/issues"
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/dotenv": "^6.1.1",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/promise-queue": "^2.2.3",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.21",
"promise-queue": "^2.2.5",
"uuid": "^9.0.1"
},
"standard": {
"env": [
"jest"
]
}
}