-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
49
50
51
52
53
54
{
"name": "fnapicom",
"version": "2.1.0",
"description": "JavaScript / TypeScript wrapper for Fortnite-API.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"test": "jest --no-cache ./tests/",
"fetchEndpoints": "node ./fetchEndpointStructs.js",
"refreshEndpoints": "npm run fetchEndpoints && npm run build",
"buildWeb": "webpack"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Fortnite-API/nodejs-wrapper.git"
},
"keywords": [
"fortnite",
"javascript",
"typescript",
"nodejs",
"fortnite-api.com"
],
"author": "ThisNils",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fortnite-API/nodejs-wrapper/issues"
},
"homepage": "https://fortnite-api.com",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"axios": "^1.7.9",
"axios-rate-limit": "^1.4.0",
"tslib": "^2.8.1"
}
}