Skip to content

Commit

Permalink
chore(package): remove support for Node v0.10 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
teppeis committed Apr 27, 2016
1 parent a9027e7 commit 4f8c907
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,9 +1,9 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "stable"
- "5"
- "6"
sudo: false
cache:
directories:
Expand Down
11 changes: 10 additions & 1 deletion README.md
@@ -1,9 +1,16 @@
fixclosure [![npm version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][deps-image]][deps-url] [![Coverage Status][coverage-image]][coverage-url]
fixclosure
====

fixclosure is JavaScript dependency checker/fixer for Closure Library based on ECMAScript AST.
It finds namespaces used in a JavaScript file and insert/remove `goog.provide` / `goog.require` automatically.

[![npm version][npm-image]][npm-url]
![Node.js Version Support][node-version]
[![Build Status][travis-image]][travis-url]
[![Dependency Status][deps-image]][deps-url]
[![Coverage Status][coverage-image]][coverage-url]
![License][license]

## Install

```bash
Expand Down Expand Up @@ -271,5 +278,7 @@ MIT License: Teppei Sato <teppeis@gmail.com>
[travis-url]: https://travis-ci.org/teppeis/fixclosure
[deps-image]: https://david-dm.org/teppeis/fixclosure.svg
[deps-url]: https://david-dm.org/teppeis/fixclosure
[node-version]: https://img.shields.io/badge/Node.js%20support-v0.12–v6-brightgreen.svg
[coverage-image]: https://coveralls.io/repos/github/teppeis/fixclosure/badge.svg?branch=master
[coverage-url]: https://coveralls.io/github/teppeis/fixclosure?branch=master
[license]: https://img.shields.io/npm/l/eslint-config-teppeis.svg
3 changes: 3 additions & 0 deletions package.json
Expand Up @@ -3,6 +3,9 @@
"description": "JavaScript dependency checker/fixer for Closure Library based on ECMAScript AST",
"version": "1.5.3",
"author": "Teppei Sato <teppeis@gmail.com>",
"engines": {
"node": ">=0.12"
},
"main": "index.js",
"bin": {
"fixclosure": "./bin/fixclosure.js"
Expand Down

0 comments on commit 4f8c907

Please sign in to comment.