Skip to content

Commit

Permalink
move repo to pillarjs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanong committed Sep 4, 2014
1 parent 53e944e commit 7aac44e
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 14 deletions.
14 changes: 6 additions & 8 deletions .travis.yml
@@ -1,9 +1,7 @@
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
fast_finish: true
- "0.8"
- "0.10"
- "0.11"
language: node_js
script: "npm run-script test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
25 changes: 23 additions & 2 deletions README.md
@@ -1,7 +1,11 @@
# templation

[![NPM Version](https://badge.fury.io/js/templation.svg)](https://badge.fury.io/js/templation)
[![Build Status](https://travis-ci.org/expressjs/templation.svg?branch=master)](https://travis-ci.org/expressjs/templation)
[![NPM version][npm-image]][npm-url]
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
[![Dependency Status][david-image]][david-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]

A node.js view system similar to what you're used to with Express' `res.render()`.
Inspired by [co-views](https://github.com/visionmedia/co-views) and
Expand Down Expand Up @@ -95,3 +99,20 @@ http.createServer(function (req, res) {
```

## [License (MIT)](LICENSE)

[npm-image]: https://img.shields.io/npm/v/templation.svg?style=flat-square
[npm-url]: https://npmjs.org/package/templation
[github-tag]: http://img.shields.io/github/tag/pillarjs/templation.svg?style=flat-square
[github-url]: https://github.com/pillarjs/templation/tags
[travis-image]: https://img.shields.io/travis/pillarjs/templation.svg?style=flat-square
[travis-url]: https://travis-ci.org/pillarjs/templation
[coveralls-image]: https://img.shields.io/coveralls/pillarjs/templation.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/pillarjs/templation?branch=master
[david-image]: http://img.shields.io/david/pillarjs/templation.svg?style=flat-square
[david-url]: https://david-dm.org/pillarjs/templation
[license-image]: http://img.shields.io/npm/l/templation.svg?style=flat-square
[license-url]: LICENSE
[downloads-image]: http://img.shields.io/npm/dm/templation.svg?style=flat-square
[downloads-url]: https://npmjs.org/package/templation
[gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square
[gittip-url]: https://www.gittip.com/jonathanong/
2 changes: 1 addition & 1 deletion index.js
@@ -1,7 +1,7 @@

var Promise = require('native-or-bluebird')
var resolve = require('path').resolve
var extname = require('path').extname
var Promise = require('bluebird')
var fs = require('fs')

Templation.engines = require('./engines')
Expand Down
20 changes: 17 additions & 3 deletions package.json
Expand Up @@ -9,17 +9,31 @@
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "expressjs/templation",
"repository": "pillarjs/templation",
"dependencies": {
"native-or-bluebird": "1",
"bluebird": "2"
},
"devDependencies": {
"istanbul": "0",
"mocha": "1",
"jade": "*",
"then-jade": "*",
"swig": "*"
},
"scripts": {
"test": "mocha --reporter spec"
}
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"templates",
"views",
"async"
],
"files": [
"index.js",
"engines",
"LICENSE"
]
}

0 comments on commit 7aac44e

Please sign in to comment.