-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 988 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 988 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
35
36
{
"name": "morse-code-lib",
"version": "1.0.2",
"description": "Morse Encode-Decode Project.",
"main": "lib/app.js",
"types": "lib/app.d.ts",
"scripts": {
"test": "mocha --require ts-node/register --watch-extensions ts 'test/**/*.ts'",
"start": "node ./lib/app.js",
"format": "prettier --write src/app.ts",
"lint": "tslint -p tsconfig.json",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jadack/MorseCode.git"
},
"author": "Jack Pacheco",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jadack/MorseCode/issues"
},
"homepage": "https://github.com/Jadack/MorseCode#readme",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"chai": "^4.3.4",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.3"
}
}