-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 764 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 764 Bytes
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
{
"name": "replay-reader",
"version": "3.1.0",
"description": "A tool to read Fortnite replays",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"fortnite",
"replay",
"node"
],
"scripts": {
"build": "tsc",
"test": "cd test && mocha index"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"author": "ThisNils",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^10.2.0",
"typescript": "^4.2.3"
}
}