list-of-top-level-domains/package.json

33 lines
940 B
JSON
Raw Normal View History

{
2022-03-07 13:54:32 +00:00
"name": "@lumeweb/tld-enum",
2018-06-23 03:34:26 +00:00
"version": "2.0.7",
2018-06-12 22:55:45 +00:00
"description": "Lists of every ICANN TLD in multiple formats",
version 2 - refactor js files to be proper module exportrs with an index.js - fix inconsistent naming of TLD format files containing simple array of each TLD; now all named using the "list" suffix instead of some using "enum" - formats/js/tld-enum/list.js - formats/json/tld-list.json - formats/php/TldEnum/TldList.php - new "desc" (description) format file; hashmap of each TLD with corresponding description - formats/js/tld-enum/desc.js - formats/json/tld-desc.json - formats/php/TldEnum/TldDesc.php - new "type" format file; hashmap of each TLD with corresponding TLD type - formats/js/tld-enum/type.js - formats/json/tld-type.json - formats/php/TldEnum/TldType.php - new "info" format file; array of each TLD with hashmap containing the "domain", "description", and "type" properties - formats/js/tld-enum/info.js - formats/json/tld-info.json - formats/php/TldEnum/TldInfo.php - examples for new format files - examples/js-desc-demo.js - examples/js-info-demo.js - examples/js-type-demo.js - examples/php-TldDesc-demo.php - examples/php-TldInfo-demo.php - examples/php-TldType-demo.php - fixes to bin/update-formats.sh - can now skip downloading data from IANA - creates new format files with newly created helpers - created new helpers for new format files - bin/helpers/generate-js-tld-desc.js - bin/helpers/generate-js-tld-info.js - bin/helpers/generate-js-tld-type.js - bin/helpers/generate-json-tld-desc.js - bin/helpers/generate-json-tld-info.js - bin/helpers/generate-json-tld-type.js - bin/helpers/generate-php-tld-desc.php - bin/helpers/generate-php-tld-info.php - bin/helpers/generate-php-tld-type.php
2018-06-13 05:51:12 +00:00
"main": "formats/js/tld-enum",
2017-12-14 04:53:18 +00:00
"repository": {
"type": "git",
2017-12-14 05:26:09 +00:00
"url": "git+https://github.com/katmore/tld-enum.git"
2017-12-14 04:53:18 +00:00
},
"author": "Doug Bird",
"license": "MIT",
"bugs": {
2017-12-14 05:26:09 +00:00
"url": "https://github.com/katmore/tld-enum/issues"
2017-12-14 04:53:18 +00:00
},
2017-12-14 05:26:09 +00:00
"homepage": "https://github.com/katmore/tld-enum#readme",
2017-12-14 04:53:18 +00:00
"devDependencies": {
"async-request": "^1.2.0",
"cheerio": "^1.0.0-rc.2",
2018-06-13 08:10:16 +00:00
"commander": "^2.15.1",
2017-12-14 04:53:18 +00:00
"country-data": "0.0.31",
"countryjs": "^1.8.0",
"csv-parse": "^4.4.6",
2018-06-13 08:10:16 +00:00
"csv-stringify": "^2.1.0",
2017-12-14 04:53:18 +00:00
"es6-promisify": "^5.0.0",
"fs": "0.0.1-security",
"fs-extra": "^5.0.0",
"md5-file": "^3.2.3",
"pathinfo": "^0.1.0",
2018-06-13 08:10:16 +00:00
"request": "^2.87.0",
2017-12-14 04:53:18 +00:00
"tmp": "0.0.33"
}
2017-12-14 07:08:15 +00:00
}