-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 954 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
{
"name": "morsecode-consoleapp",
"version": "1.0.0",
"description": "ConsoleApp to implement MorseCode Library",
"main": "src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/app.js",
"package": "tsc -p . && pkg --targets linux,macos,win . --out-path package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jadack/MorseCodeConsoleApp.git"
},
"author": "Jack Pacheco",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jadack/MorseCodeConsoleApp/issues"
},
"homepage": "https://github.com/Jadack/MorseCodeConsoleApp#readme",
"dependencies": {
"chalk": "^4.1.2",
"figlet": "^1.5.2",
"morse-code-lib": "^1.0.2"
},
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/node": "^16.10.3",
"pkg": "^5.3.3"
},
"bin":{
"mc": "./dist/app.js"
},
"pkg": {
"scripts": "dist/**/*.js"
}
}