Skip to content

Commit

Permalink
chore(release): 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed May 30, 2018
1 parent 59f951b commit 86da164
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 51 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="2.1.0"></a>
# [2.1.0](https://github.com/peerigon/parse-domain/compare/v2.0.0...v2.1.0) (2018-05-30)


### Features

* Use trie data structure to decrease file size ([#33](https://github.com/peerigon/parse-domain/issues/33)) ([59f951b](https://github.com/peerigon/parse-domain/commit/59f951b))



<a name="2.0.0"></a>
# [2.0.0](https://github.com/peerigon/parse-domain/compare/v1.2.0...v2.0.0) (2017-12-03)

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

100 changes: 50 additions & 50 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
{
"name": "parse-domain",
"version": "2.0.0",
"description": "Splits an url into sub-domain, domain and effective top-level-domain",
"main": "./lib/parseDomain.js",
"scripts": {
"test": "nyc mocha -R spec",
"posttest": "eslint lib test",
"postinstall": "node scripts/build-tries.js",
"prepublish": "node scripts/write-pre.js",
"release": "standard-version"
},
"keywords": [
"domain",
"url",
"sub-domain",
"tld",
"parse",
"extract",
"sanitize",
"country",
"top-level"
],
"repository": {
"type": "git",
"url": "https://github.com/peerigon/parse-domain.git"
},
"author": "peerigon <developers@peerigon.com>",
"license": "Unlicense",
"dependencies": {
"chai": "^4.1.2",
"fs-copy-file-sync": "^1.1.1",
"got": "^8.0.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-peerigon": "^12.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsdoc": "^3.2.0",
"nyc": "^11.3.0",
"standard-version": "^4.2.0"
},
"files": [
"lib",
"scripts",
"lists",
"test",
"build/tries/pre"
]
"name": "parse-domain",
"version": "2.1.0",
"description": "Splits an url into sub-domain, domain and effective top-level-domain",
"main": "./lib/parseDomain.js",
"scripts": {
"test": "nyc mocha -R spec",
"posttest": "eslint lib test",
"postinstall": "node scripts/build-tries.js",
"prepublish": "node scripts/write-pre.js",
"release": "standard-version"
},
"keywords": [
"domain",
"url",
"sub-domain",
"tld",
"parse",
"extract",
"sanitize",
"country",
"top-level"
],
"repository": {
"type": "git",
"url": "https://github.com/peerigon/parse-domain.git"
},
"author": "peerigon <developers@peerigon.com>",
"license": "Unlicense",
"dependencies": {
"chai": "^4.1.2",
"fs-copy-file-sync": "^1.1.1",
"got": "^8.0.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-peerigon": "^12.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsdoc": "^3.2.0",
"nyc": "^11.3.0",
"standard-version": "^4.2.0"
},
"files": [
"lib",
"scripts",
"lists",
"test",
"build/tries/pre"
]
}

0 comments on commit 86da164

Please sign in to comment.