UNPKG

countries-capitals

Version:

A simple package to get the capital of the countries

81 lines (80 loc) 2.25 kB
{ "name": "countries-capitals", "version": "1.3.5", "description": "A simple package to get the capital of the countries", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md" ], "scripts": { "test": "jest --coverage", "test:watch": "jest --watch", "lint": "standard src/*.ts | snazzy", "lint:fix": "standard src/*.ts --fix", "semantic-release": "semantic-release", "prebuild": "rimraf dist", "build": "tsc && rollup --config", "postbuild": "terser dist/index.umd.js --output dist/index.umd.min.js --compress --mangle --source-map \"filename='index.umd.min.js.map'\"", "prepublishOnly": "npm run build", "predocs": "rimraf docs", "docs": "typedoc --out docs src", "postdocs": "touch docs/.nojekyll" }, "repository": { "type": "git", "url": "https://github.com/chgasparoto/countries-capitals.git" }, "keywords": [ "countries", "capitals" ], "author": "Cleber Gasparoto <chgasparoto@gmail.com> (https://github.com/chgasparoto)", "license": "MIT", "bugs": { "url": "https://github.com/chgasparoto/countries-capitals/issues" }, "homepage": "https://github.com/chgasparoto/countries-capitals#readme", "dependencies": { "random-item": "3.0.0" }, "devDependencies": { "@types/jest": "24.0.18", "@typescript-eslint/eslint-plugin": "2.3.0", "@typescript-eslint/parser": "2.3.0", "codecov": "3.7.1", "cz-conventional-changelog": "3.0.2", "husky": "3.0.5", "jest": "26.6.3", "jest-extended": "0.11.2", "rimraf": "3.0.0", "rollup": "1.21.4", "rollup-plugin-commonjs": "10.1.0", "rollup-plugin-json": "4.0.0", "rollup-plugin-node-resolve": "5.2.0", "semantic-release": "17.4.2", "snazzy": "8.0.0", "standard": "14.2.0", "terser": "4.3.1", "ts-jest": "26.5.4", "typedoc": "0.20.34", "typescript": "4.2.3" }, "husky": { "hooks": { "pre-commit": "npm run lint && npm run test" } }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "standard": { "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint/eslint-plugin" ] } }