├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── cli.js ├── index.js ├── lib ├── countries.json └── states.json ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | ~* 2 | *~ 3 | node_modules 4 | npm-debug.log* 5 | .DS_Store 6 | Thumbs.db 7 | !.g 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/bin/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/index.js -------------------------------------------------------------------------------- /lib/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/lib/countries.json -------------------------------------------------------------------------------- /lib/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/lib/states.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffybunnies/parse-address-string/HEAD/test/test.js --------------------------------------------------------------------------------