morsa
Version:
Just a simple morse code translator.
76 lines (75 loc) • 1.9 kB
JSON
{
"name": "morsa",
"version": "1.0.2",
"description": "Just a simple morse code translator.",
"author": {
"name": "Agustinho Neto",
"email": "agustinho.pneto@gmail.com",
"url": "https://github.com/agustinhopneto"
},
"homepage": "https://github.com/agustinhopneto/morsa.git",
"repository": {
"type": "git",
"url": "https://github.com/agustinhopneto/morsa.git"
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"license": "MIT",
"keywords": [
"morse",
"code",
"translator",
"morse code",
"morse translator"
],
"scripts": {
"test": "mocha",
"test:cov": "nyc mocha",
"clean": "rm -rf ./lib",
"build:esm": "tsc -p tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"prepack": "npm run build",
"example": "npm run build && node ./example.js",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}