-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 832 Bytes
/
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
{
"name": "steam-badges-db",
"version": "1.0.0",
"description": "An up-to-date database about all existing Steam apps having trading cards",
"main": "index.js",
"scripts": {
"start": "node --max-old-space-size=256 --optimize-for-size index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"keywords": [
"steam"
],
"repository": "github:nolddor/steam-badges-db",
"author": "Jack Nolddor",
"license": "Apache License 2.0",
"engines": {
"node": "^18.0.0 || >=20.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"html-entities": "2.5.2",
"winston": "3.17.0"
},
"devDependencies": {
"eslint": "9.19.0",
"eslint-plugin-jest": "28.11.0",
"jest": "29.7.0",
"memfs": "4.17.0",
"neostandard": "0.12.0",
"std-mocks": "2.0.0"
}
}