-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 985 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "bptf-prices",
"version": "1.5.4",
"description": "A Node.js wrapper for the Backpack.tf economy Web API.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --require dotenv/config --timeout 5000",
"fix": "eslint -c .eslintrc.json . --fix",
"lint": "eslint -c .eslintrc.json ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SnaBe/node-bptf-prices.git"
},
"keywords": [
"backpack-tf",
"bptf",
"tf2",
"prices",
"economy",
"currencies",
"web-api",
"wrapper",
"callback",
"promise"
],
"author": "Simon Sørensen",
"license": "MIT",
"bugs": {
"url": "https://github.com/SnaBe/node-bptf-prices/issues"
},
"homepage": "https://github.com/SnaBe/node-bptf-prices#readme",
"dependencies": {
"axios": "^1.6.3"
},
"devDependencies": {
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}