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 2de4a7c commit 012d9eb
Show file tree
Hide file tree
Showing 13 changed files with 493 additions and 531 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
21 changes: 11 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
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/
sources/
14 changes: 0 additions & 14 deletions .jshintrc

This file was deleted.

11 changes: 0 additions & 11 deletions .npmignore

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"
50 changes: 25 additions & 25 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
## Changelog
# Changelog

### 1.0.1 (2015-03-15)
## 1.0.1 (2015-03-15)

* Misc. updates
- Misc. updates

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

* Stable release
- Stable release

### 0.2.3 (2014-05-22)
## 0.2.3 (2014-05-22)

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

### 0.2.2 (2014-04-26)
## 0.2.2 (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.2.1 (2014-04-09)
## 0.2.1 (2014-04-09)

* Misc. changes
- Misc. changes

### 0.2.0 (2014-01-19)
## 0.2.0 (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)

* Stable release
- Stable release

### 0.0.2 (2013-12-12)
## 0.0.2 (2013-12-12)

* Additional JSHint options
* .gitattributes
* CHANGELOG.md
- Additional JSHint options
- .gitattributes
- CHANGELOG.md

### 0.0.1 (2013-08-12)
## 0.0.1 (2013-08-12)

* 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) 2013 Fatih Cetinkaya (http://github.com/cmfatih/amazon-costs)
Copyright (c) 2013 Fatih Cetinkaya (http://github.com/devfacet/amazon-costs)

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.
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
## Amazon Costs
# Amazon Costs

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

Amazon Costs is a module for retrieving Amazon product information and calculating costs for
fulfillment and merchant channels.

### Installation
## Installation

```
```bash
npm install amazon-costs
```

### Usage
## Usage

### Search

**Search**
```javascript
var amzCosts = require('amazon-costs');

Expand Down Expand Up @@ -58,7 +59,8 @@ amzCosts.productSearch('The Hobbit DVD', function(err, data) {
*/
```

**Costs**
### Cost

```javascript
var amzCosts = require('amazon-costs');
var asin = 'B00BEZTMQ8';
Expand Down Expand Up @@ -190,13 +192,13 @@ amzCosts.productSearch(asin, function(err, data) {
*/
```

### 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-costs
[npm-image]: https://badge.fury.io/js/amazon-costs.png
[npm-image]: https://badge.fury.io/js/amazon-costs.svg

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

0 comments on commit 012d9eb

Please sign in to comment.