-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 873 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
{
"name": "morsee",
"version": "1.0.9",
"description": "A simple decoder/encoder for morse code written in javascript",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielfurini/morsee.git"
},
"keywords": [
"morse",
"code",
"morse code",
"encode",
"decode"
],
"author": "Gabriel Furini",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielfurini/morsee/issues"
},
"homepage": "https://github.com/gabrielfurini/morsee#readme",
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^8.4.0",
"prettier": "^2.3.0"
}
}