Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "ext-map", | ||
"description": "just an object that maps `src` file extensions to `dest` file extensions as key/value pairs (e.g. `{'.less': '.css'}`). Useful for dynamically rewriting paths in tasks/plugins. pull requests welcome.", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/jonschlinkert/ext-map", | ||
@@ -19,4 +19,5 @@ "author": { | ||
"type": "MIT", | ||
"url": "https://github.com/jonschlinkert/ext-map/blob/master/LICENSE-MIT" | ||
"url": "https://github.com/jonschlinkert/ext-map/blob/master/LICENSE" | ||
}, | ||
"files": ["index.js"], | ||
"main": "index.js", | ||
@@ -27,3 +28,3 @@ "engines": { | ||
"scripts": { | ||
"test": "mocha -R spec" | ||
"test": "mocha" | ||
}, | ||
@@ -30,0 +31,0 @@ "devDependencies": { |
@@ -5,12 +5,11 @@ # ext-map [![NPM version](https://badge.fury.io/js/ext-map.svg)](http://badge.fury.io/js/ext-map) | ||
## Install with [npm](npmjs.org) | ||
## Related projects | ||
```bash | ||
npm i ext-map --save | ||
``` | ||
* [gulp-extname](https://github.com/jonschlinkert/gulp-extname): gulp plugin to dynamically rewrite dest extensions based on src extensions. | ||
* [rewrite-ext](https://github.com/jonschlinkert/rewrite-ext): Automatically re-write the destination extension of a filepath based on the source extension. e.g … [more](https://github.com/jonschlinkert/rewrite-ext) | ||
## Run tests | ||
Install with [npm](https://www.npmjs.com/) | ||
```bash | ||
npm test | ||
npm i ext-map --save | ||
``` | ||
@@ -30,27 +29,35 @@ | ||
- `.md`: => `.html` | ||
- `.hbs`: => `.html` | ||
- `.slim`: => `.html` | ||
- `.swig`: => `.html` | ||
- `.tmpl`: => `.html` | ||
- `.html`: => `.html` | ||
- `.htm`: => `.html` | ||
* `.md`: => `.html` | ||
* `.hbs`: => `.html` | ||
* `.slim`: => `.html` | ||
* `.swig`: => `.html` | ||
* `.tmpl`: => `.html` | ||
* `.html`: => `.html` | ||
* `.htm`: => `.html` | ||
**css** | ||
- `.less`: => `.css` | ||
- `.styl`: => `.css` | ||
- `.sass`: => `.css` | ||
- `.scss`: => `.css` | ||
- `.css`: => `.css` | ||
* `.less`: => `.css` | ||
* `.styl`: => `.css` | ||
* `.sass`: => `.css` | ||
* `.scss`: => `.css` | ||
* `.css`: => `.css` | ||
**js** | ||
- `.coffee`: => `.js` | ||
- `.ls`: => `.js` | ||
- `.ts`: => `.js` | ||
- `.js`: => `.js` | ||
* `.coffee`: => `.js` | ||
* `.ls`: => `.js` | ||
* `.ts`: => `.js` | ||
* `.js`: => `.js` | ||
## 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/jonschlinkert/ext-map/issues) | ||
@@ -61,12 +68,15 @@ | ||
**Jon Schlinkert** | ||
+ [github/jonschlinkert](https://github.com/jonschlinkert) | ||
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) | ||
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) | ||
## License | ||
Copyright (c) 2014-2015 Jon Schlinkert | ||
Released under the MIT license | ||
Copyright (c) 2014-2015 Jon Schlinkert | ||
Released under the MIT license. | ||
*** | ||
_This file was generated by [verb](https://github.com/assemble/verb) on January 15, 2015._ | ||
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on May 04, 2015._[assemble]: http://assemble.io | ||
[template]: https://github.com/jonschlinkert/template | ||
[verb]: https://github.com/assemble/verb |
80
4545
4
21