-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
56 lines (56 loc) · 1.48 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
54
55
56
{
"name": "@ozdemirburak/morse-code-translator",
"version": "5.0.4",
"description": "Morse code translator helps you convert text to Morse code and vice versa, with the option to play Morse code audio.",
"keywords": [
"morse",
"morse alphabet",
"morse code",
"morse decoder",
"morse encoder",
"morse translator",
"morse code translator"
],
"license": "MIT",
"homepage": "https://morsecodetranslator.com",
"author": "Burak Özdemir",
"repository": {
"type": "git",
"url": "https://github.com/ozdemirburak/morse-code-translator.git"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "10.2.0",
"nyc": "^15.1.0",
"rollup": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"types": "./src/index.d.ts",
"main": "./src/index.js",
"files": [
"LICENSE",
"README.md",
"src",
"dist",
"package.json"
],
"scripts": {
"build": "rollup -c",
"build-rel": "rollup -c -p @rollup/plugin-terser -o ./dist/morse-code-translator.min.js",
"tsc": "tsc --noEmit",
"test": "mocha",
"test-cov": "nyc mocha",
"lint": "eslint ./src/index.ts"
},
"engines": {
"node": ">=4.0.0"
}
}