-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 880 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
{
"name": "@utkarsh1905/node-cli-project",
"description": "Development Automation Tool",
"version": "4.3.0",
"license": "MIT",
"bin": {
"dat": "./index.js"
},
"author": {
"name": "Utkarsh Tripathi",
"email": "utripathi2002@gmail.com",
"url": "https://utkarsh.ninja"
},
"keywords": [
"node cli",
"CLI"
],
"files": [
"index.js",
"utils",
"template"
],
"scripts": {
"test": "exit 0",
"format": "prettier --write \"./**/*.{js,json}\""
},
"repository": "git://github.com/utkarsh-1905/node-cli-project.git",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^3.1.0",
"cli-welcome": "^2.2.2",
"inquirer": "^9.1.0",
"meow": "^9.0.0",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}