-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 762 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 762 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
{
"name": "get-exchange-code",
"version": "1.0.0",
"description": "A tool to create exchange codes for epicgames online services",
"main": "index.js",
"scripts": {
"app": "node index.js",
"pack": "pkg ."
},
"author": "ThisNils",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"open": "^7.4.0",
"puppeteer-core": "^19.2.2",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0"
},
"pkg": {
"scripts": "index.js",
"targets": [
"node10-win",
"node10-linux",
"node10-macos"
]
},
"bin": "index.js",
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"pkg": "^4.4.8"
}
}