-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 934 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
{
"name": "beatquest-renamer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-linux": "npm run compile && pkg -t node14-linux dist/index.js -o beatquest-renamer",
"build-win": "npm run compile && pkg -t node14-win dist/index.js -o beatquest-renamer",
"clean": "rimraf dist",
"compile": "tsc src/*.ts --outDir dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"pkg": "^4.4.9",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}