Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
doowb committed Oct 31, 2015
1 parent 2d3d951 commit 14d3e06
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 18 deletions.
11 changes: 3 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,15 @@ root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
insert_final_newline = false

[{,test/}{actual,fixtures}/**]
trim_trailing_whitespace = false
insert_final_newline = false

[templates/**]
trim_trailing_whitespace = false
[test/fixtures/*]
insert_final_newline = false
trim_trailing_whitespace = false
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
*.jpg binary
*.gif binary
*.png binary
*.jpeg binary
*.jpeg binary
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"sub": true,
"undef": true,
"unused": true
}
}
3 changes: 1 addition & 2 deletions .verb.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# {%= name %} {%= badge("fury") %}
# {%= name %} {%= badge("fury") %} {%= badge("travis") %}

> {%= description %}
## Install
{%= include("install-npm", {save: true}) %}

## Usage
Expand Down
50 changes: 50 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# npm-base [![NPM version](https://badge.fury.io/js/npm-base.svg)](http://badge.fury.io/js/npm-base) [![Build Status](https://travis-ci.org/doowb/npm-base.svg)](https://travis-ci.org/doowb/npm-base)

> Base class for downloading data from the npm registry
## Install with [npm](npmjs.org)

```bash
npm i npm-base --save
```

## Usage

```js
var npmBase = require('npm-base');
```

## API
<!-- add a path or glob pattern for files with code comments to use for docs -->
{%= apidocs("index.js") %}

## Related projects
<!-- add an array of related projects, then un-escape the helper -->
{%= related([]) %}

## Running tests
Install dev dependencies.

```bash
npm i -d && npm test
```


## Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/doowb/npm-base/issues)


## Author

**Brian Woodward**

+ [github/doowb](https://github.com/doowb)
+ [twitter/doowb](http://twitter.com/doowb)

## License
Copyright © 2015 Brian Woodward
Released under the MIT license

***

_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on October 31, 2015._
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
"scripts": {
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"keywords": []
}
"mocha": "*"
}
}

0 comments on commit 14d3e06

Please sign in to comment.