-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "steam-badge-unlocker",
"version": "1.1.0",
"description": "Provides an interface to solve most quests of the Steam Community badge.",
"main": "index.js",
"files": [
"classes/",
"components/",
"resources/",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/HenkerX64/node-steam-badge-unlocker.git"
},
"keywords": [
"steam",
"steam community",
"steam badge",
"steam tasks",
"steam awards",
"steam api"
],
"author": "HenkerX64",
"license": "MIT",
"bugs": {
"url": "https://github.com/HenkerX64/node-steam-badge-unlocker/issues"
},
"homepage": "https://github.com/HenkerX64/node-steam-badge-unlocker",
"devDependencies": {
"async": ">=2.6.4",
"mocha": "^8.4.0",
"nanoid": "^3.1.31",
"nyc": "14.1.1",
"steamcommunity": "^3.44.1",
"steamid": ">=1.1.3"
},
"peerDependencies": {
"async": ">=2.6.4",
"steamcommunity": ">=3.43.1"
},
"peerDependenciesMeta": {
"async": {
"optional": true
}
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "mocha tests/index.test.js --timeout 20000",
"test-cov": "nyc mocha tests/index.test.js --timeout 20000"
}
}