UNPKG

countries-names

Version:

A-Z list of country names and their codes

99 lines (98 loc) 2.62 kB
{ "name": "countries-names", "version": "1.0.4", "description": "A-Z list of country names and their codes", "main": "dist/index.js", "dependencies": { "ramda": "^0.25.0" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-loader": "^7.1.5", "babel-plugin-istanbul": "^4.1.6", "babel-preset-es2015": "^6.24.1", "babel-register": "^6.26.0", "chai": "^4.1.2", "codecov": "^3.0.4", "commitizen": "^2.10.1", "cross-env": "^5.2.0", "cz-conventional-changelog": "^2.1.0", "eslint": "^5.0.1", "eslint-config-kentcdodds": "^14.0.0", "ghooks": "^2.0.4", "json-loader": "^0.5.7", "mocha": "^5.2.0", "npm-run-all": "^4.1.3", "nyc": "^12.0.2", "ramda": "^0.25.0", "rimraf": "^2.6.2", "semantic-release": "^15.7.0", "semantic-release-cli": "^4.0.6", "travis-deploy-once": "^5.0.1", "validate-commit-msg": "^2.14.0", "webpack": "^4.15.1", "webpack-cli": "^3.0.8" }, "nyc": { "check-coverage": true, "branches": 99, "functions": 99, "statements": 99, "lines": 99, "reporter": [ "text", "lcov" ], "include": "src", "instrument": false, "sourceMap": false, "require": [ "babel-register" ] }, "config": { "ghooks": { "pre-commit": "npm run validate", "commit-msg": "validate-commit-msg" }, "commitizen": { "path": "cz-conventional-changelog" } }, "scripts": { "commit": "git-cz", "test": "cross-env NODE_ENV=test nyc mocha", "lint": "eslint src", "watch:test": "mocha --watch", "validate": "npm-run-all --parallel lint test build", "build:main": "babel src --copy-files --out-dir dist --ignore *.test.js", "build:umd": "webpack --mode production --output-filename countries-names.min.js", "build": "npm-run-all --parallel build:*", "prebuild": "rimraf dist", "build:dev": "webpack --mode development --output-filename countries-names.js", "report-coverage": "cat ./coverage/lcov.info | codecov", "travis-deploy-once": "travis-deploy-once", "semantic-release": "semantic-release" }, "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/sergfa/countries-names.git" }, "author": "Sergey Fayman <sergfa@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/sergfa/countries-names/issues" }, "homepage": "https://github.com/sergfa/countries-names#readme", "keywords": [ "country", "countries", "ISO 3166-1-alpha-2", "ISO 3166-1", "names", "world" ] }