-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1014 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "cli-stackoverflow",
"version": "1.2.0",
"description": "Work with the Stack Overflow inside your terminal",
"main": "index.js",
"repository": "MLH-Fellowship/stackoverflow-cli.git",
"keywords": [
"stackoverflow",
"stackoverflow-cli",
"developer tool"
],
"author": {
"name": "Saad Irfan, Angelina Gasharova, Aneesh Kodali"
},
"bin": {
"stack": "index.js"
},
"files": [
"index.js",
"utils/*"
],
"license": "MIT",
"homepage": "MLH-Fellowship/stackoverflow-cli#readme",
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\"",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.0",
"cli-meow-help": "^2.0.2",
"cli-welcome": "^2.2.2",
"enquirer": "^2.3.6",
"keypress": "^0.2.1",
"log-symbols": "^4.0.0",
"log-update": "^4.0.0",
"meow": "^8.0.0",
"node-cli-handle-error": "^1.0.0",
"ora": "^5.1.0",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"jest": "^26.6.3",
"prettier": "^2.2.0"
}
}