Skip to content
This repository has been archived by the owner on Mar 17, 2019. It is now read-only.

Commit

Permalink
Maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
devfacet committed Mar 5, 2017
1 parent 86147c6 commit 45f6ddc
Show file tree
Hide file tree
Showing 11 changed files with 392 additions and 422 deletions.
14 changes: 8 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# See editorconfig.org

root = true

[*]

indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false

[*.md]
trim_trailing_whitespace = false

[*.{js,json,yml,yaml}]
indent_style = space
indent_size = 2

trim_trailing_whitespace = false
#[*.go]
#indent_style = tab
#indent_size = 8
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
*.css text
*.js text
*.json text
*.go text

*.bat text
*.sh text
*.exe binary
*.exe binary
20 changes: 10 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
node_modules/
npm-debug.log

.DS_Store
.idea
Thumbs.db

*.log
*.heapsnapshot
.coverrun
.coverdata
dump.rdb
xunit.xml
*.exe
*.prof
*.out

sources/
tmp/
logs/
reports/
releases/
vendor/
node_modules/
14 changes: 0 additions & 14 deletions .jshintrc

This file was deleted.

7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
sudo: false

language: node_js

node_js:
- "0.12"
- "0.10"
- "iojs"
- "4"
- "6"
42 changes: 21 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
## Changelog
# Changelog

### 1.0.2 (2015-03-15)
## 1.0.2 (2015-03-15)

* Misc. updates
- Misc. updates

### 1.0.1 (2014-12-19)
## 1.0.1 (2014-12-19)

* Change dom element
- Change dom element

### 1.0.0 (2014-07-04)
## 1.0.0 (2014-07-04)

* Stable release
- Stable release

### 0.1.4 (2014-05-22)
## 0.1.4 (2014-05-22)

* Update badges
* Misc. updates
- Update badges
- Misc. updates

### 0.1.3 (2014-04-26)
## 0.1.3 (2014-04-26)

* Add unit test
* Add npm badge
* Add Build Status
* Add .travis.yml
- Add unit test
- Add npm badge
- Add Build Status
- Add .travis.yml

### 0.1.2 (2014-04-09)
## 0.1.2 (2014-04-09)

* Misc. changes
- Misc. changes

### 0.1.1 (2014-01-19)
## 0.1.1 (2014-01-19)

* Reimplementation for handling return and errors
- Reimplementation for handling return and errors

### 0.1.0 (2014-01-19)
## 0.1.0 (2014-01-19)

* Initial release
- Initial release
32 changes: 16 additions & 16 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 Fatih Cetinkaya (http://github.com/cmfatih/amazon-seller)
Copyright (c) 2014 Fatih Cetinkaya (http://github.com/devfacet/amazon-seller)

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
## Amazon Seller
# Amazon Seller

[![NPM][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]

Amazon Seller is a module for retrieving Amazon seller information.

### Installation
## Installation

```
```bash
npm install amazon-seller
```

### Usage
## Usage

```javascript
var amzSel = require('amazon-seller');
Expand Down Expand Up @@ -79,13 +79,13 @@ amzSel.sellerInfo({sellerId: 'A3TYU8WJN37NYT', marketplace: 'US'}, function(err,
*/
```

### License
## License

Licensed under The MIT License (MIT)
For the full copyright and license information, please view the LICENSE.txt file.

[npm-url]: http://npmjs.org/package/amazon-seller
[npm-image]: https://badge.fury.io/js/amazon-seller.png
[npm-image]: https://badge.fury.io/js/amazon-seller.svg

[travis-url]: https://travis-ci.org/cmfatih/amazon-seller
[travis-image]: https://travis-ci.org/cmfatih/amazon-seller.svg?branch=master
[travis-url]: https://travis-ci.org/devfacet/amazon-seller
[travis-image]: https://travis-ci.org/devfacet/amazon-seller.svg?branch=master
Loading

0 comments on commit 45f6ddc

Please sign in to comment.