-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.14 KB
/
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
38
39
40
41
{
"name": "heroic-wine-downloader",
"version": "1.2.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": "https://github.com/Heroic-Games-Launcher/heroic-wine-downloader.git",
"author": "Nocccer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"spawn-mock": "^1.0.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"test": "jest --config jest.config.js",
"lint": "eslint -c .eslintrc --ext .tsx,ts ./src",
"lint-fix": "eslint --fix -c .eslintrc --ext .tsx,ts ./src",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf lib build",
"ts-node": "ts-node",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write ."
},
"dependencies": {
"@types/graceful-fs": "^4.1.5",
"axios": "^0.24.0",
"graceful-fs": "^4.2.8"
}
}