forked from ozdemirburak/morse-code-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 KB
/
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
44
45
46
47
48
49
50
51
52
53
{
"name": "morsify",
"version": "0.5.3",
"description": "Morse code translator and decoder which also generates audio.",
"keywords": [
"morse",
"morse alphabet",
"morse audio",
"morse characters",
"morse code",
"morse decoder",
"morse encoder",
"morse translator",
"morse code translator",
"samuel morse",
"codigo morse",
"морзе",
"morsify"
],
"license": "MIT",
"homepage": "https://github.com/ozdemirburak/morsify",
"author": "Burak Özdemir <mail@burakozdemir.co.uk> (https://ozdemirburak.com)",
"repository": {
"type": "git",
"url": "https://github.com/ozdemirburak/morsify.git"
},
"devDependencies": {
"coveralls": "^2.13.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.0",
"lodash": "^4.17.10",
"mocha": "^3.4.0",
"pump": "^1.0.2"
},
"main": "./src/morsify.js",
"files": [
"LICENSE",
"README.md",
"src",
"dist"
],
"scripts": {
"test": "npm run lint && mocha",
"test-cov": "istanbul cover _mocha",
"lint": "jshint ./src/morsify.js"
},
"engines": {
"node": ">=4.0.0"
}
}