-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 784 Bytes
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
{
"name": "custom-menu-cli",
"version": "5.0.0",
"description": "Menu interativo baseado em JSON para execução de comandos no terminal",
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"build": "pkg . --targets node16-linux-x64,node16-win-x64,node16-macos-x64 --output dist/custom-menu-v$npm_package_version"
},
"keywords": [
"cli",
"menu",
"json",
"terminal",
"deploy",
"custom"
],
"author": "Mateus Medeiros <https://github.com/mateusmed>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"inquirer": "^8.2.4"
},
"devDependencies": {
"jest": "^30.2.0",
"pkg": "^5.8.1"
},
"jest": {
"testEnvironment": "node"
}
}