-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "check-weather-cli",
"version": "1.0.0",
"description": "CLI tool to check the weather",
"main": "./dist/bundle.js",
"bin": {
"check-weather-cli": "./dist/bundle.js"
},
"scripts": {
"build": "npx esbuild ./src/index.ts --bundle --outfile=./dist/bundle.js --platform=node --target=node16",
"watch": "npx esbuild ./src/index.ts --bundle --outfile=./dist/bundle.js --platform=node --target=node16 --watch",
"test": "jest",
"test:coverage": "jest --coverage --no-cache",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexeyPopovUA/check-weather-cli.git"
},
"author": "Oleksii Popov",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/AlexeyPopovUA/check-weather-cli/issues"
},
"homepage": "https://github.com/AlexeyPopovUA/check-weather-cli#readme",
"dependencies": {
"boxen": "^7.0.0",
"dotenv": "^16.0.3",
"got": "^11.8.5",
"inquirer": "^9.1.2",
"lodash": "^4.17.21",
"yargs": "^17.6.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.2",
"@types/jest": "^29.1.1",
"@types/lodash": "^4.14.186",
"@types/yargs": "^17.0.13",
"@typescript-eslint/parser": "^5.38.1",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}