This repository was archived by the owner on Oct 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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": "tf2-items",
"version": "3.5.4",
"description": "Get information about Team Fortress 2 items and the schema",
"main": "./lib/items.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint ./",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"report": "npm test && istanbul report",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"release": "np --yolo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nicklason/node-tf2-items.git"
},
"author": {
"name": "Nicklas Marc Pedersen",
"url": "https://nicklas.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Nicklason/node-tf2-items/issues"
},
"homepage": "https://github.com/Nicklason/node-tf2-items#readme",
"dependencies": {
"@nicklason/request-retry": "^1.1.1",
"async": "^3.1.0",
"moment": "^2.24.0",
"object.values": "^1.1.0",
"util": "^0.12.0",
"vdf": "0.0.2"
},
"devDependencies": {
"assert": "^2.0.0",
"coveralls": "^3.0.4",
"dotenv": "^8.0.0",
"eslint": "^6.0.0",
"eslint-config-google": "^0.13.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"path": "^0.12.7"
}
}