Skip to content

Commit

Permalink
Merge 0d9bc8d into 9d1f515
Browse files Browse the repository at this point in the history
  • Loading branch information
WindomZ committed Sep 6, 2018
2 parents 9d1f515 + 0d9bc8d commit 15b2748
Show file tree
Hide file tree
Showing 4 changed files with 866 additions and 763 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ os:
- osx

node_js:
- '6.0'
- '6.11'
- '7.0'
- '7.10'
- '8.0'
- '8.1'
- '6.14'
- '8'
- '9'
- 'lts/*'
- 'node'

cache:
yarn: true
Expand Down
26 changes: 21 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# disk-calc
```
_______ __ _______. __ ___ ______ ___ __ ______
| \ | | / || |/ / / | / \ | | / |
| .--. || | | (----`| ' / ______| ,----' / ^ \ | | | ,----'
| | | || | \ \ | < |______| | / /_\ \ | | | |
| '--' || | .----) | | . \ | `----./ _____ \ | `----.| `----.
|_______/ |__| |_______/ |__|\__\ \______/__/ \__\ |_______| \______|
```

[![Greenkeeper badge](https://badges.greenkeeper.io/WindomZ/disk-calc.svg)](https://greenkeeper.io/)
[![Build Status](https://travis-ci.org/WindomZ/disk-calc.svg?branch=master)](https://travis-ci.org/WindomZ/disk-calc)
Expand Down Expand Up @@ -44,7 +54,7 @@ $ disk-calc -h
-V, --version output the version number
```

## Example
## Examples

```bash
disk-calc usage # Display the program steps in English.
Expand All @@ -56,9 +66,15 @@ disk-calc windows 10GB # Calculate the size of the 10G partition
disk-calc windows 10G 566M # Calculate the size of the 10G partition + 566MB hidden partition sizes
```

## License
## Contributing

Welcome to pull requests, report bugs, suggest ideas and discuss **disk-calc**,
i would love to hear what you think about **disk-calc** on [issues page](https://github.com/WindomZ/disk-calc/issues).

The [MIT License](https://github.com/WindomZ/disk-calc/blob/master/LICENSE)
If you like it then you can put a :star: on it.

## License

[MIT](https://github.com/WindomZ/disk-calc/blob/master/LICENSE)

[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FWindomZ%2Fdisk-calc.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FWindomZ%2Fdisk-calc?ref=badge_large)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FWindomZ%2Fdisk-calc.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FWindomZ%2Fdisk-calc?ref=badge_large)
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"disk-calc": "bin/disk-calc.js"
},
"engines": {
"node": ">=6"
"node": ">=6.14"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.14.1"
"colors": "^1.3.2",
"commander": "^2.17.1"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"nyc": "^12.0.1",
"standard": "^11.0.0"
"coveralls": "^3.0.2",
"nyc": "^13.0.1",
"standard": "^12.0.1"
},
"scripts": {
"test": "standard && nyc --reporter=lcov --reporter=text-lcov ava",
Expand Down

0 comments on commit 15b2748

Please sign in to comment.