-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "steamgriddb",
"version": "2.2.0",
"description": "Node.js Wrapper for the SteamGridDB API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "npm install && npm run build",
"test": "npm run lint && jest",
"lint": "eslint --max-warnings=0 src/** test/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steamgriddb/node-steamgriddb.git"
},
"keywords": [
"sgdb",
"steamgriddb",
"steam",
"api",
"wrapper"
],
"author": "Jozen Martinez (https://jozen.blue)",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"nock": "^13.2.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}