forked from benhawley7/fortnite-api-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 868 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
{
"name": "fortnite-api-io",
"version": "1.9.0",
"description": "Nodejs module for making requests to fortniteapi.io",
"main": "index.js",
"author": "Ben Hawley",
"contributors": [
"Theo Bontemps"
],
"license": "MIT",
"scripts": {
"test": "npx tape test",
"test:coverage": "nyc tape test"
},
"keywords": [
"fortnite",
"fortnite-api",
"fortnite-api-io"
],
"bugs": "https://github.com/benhawley7/fortnite-api-io/issues",
"repository": {
"type": "git",
"url": "https://github.com/benhawley7/fortnite-api-io.git"
},
"files": [
"index.js",
"lib/**"
],
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"nyc": "^15.1.0",
"tape": "^4.13.3"
}
}