Skip to content

Commit

Permalink
Updates engines (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
zrrrzzt committed Jun 29, 2018
1 parent 8a3ccae commit d8a72fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,5 +1,5 @@
language: node_js
node_js:
- "8"
- "10"
after_success:
- npm run coveralls
3 changes: 1 addition & 2 deletions README.md
@@ -1,6 +1,5 @@
[![Build Status](https://travis-ci.org/zrrrzzt/gun-next-example.svg?branch=master)](https://travis-ci.org/zrrrzzt/gun-next-example)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)
[![Greenkeeper badge](https://badges.greenkeeper.io/zrrrzzt/gun-next-example.svg)](https://greenkeeper.io/)

# gun-next-example

Expand Down Expand Up @@ -32,7 +31,7 @@ To export the app to static
$ npm run export
```

Deploy the `out`folder wherever you like
Deploy the `out` folder wherever you like

## Now

Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -19,10 +19,10 @@
},
"homepage": "https://github.com/zrrrzzt/gun-next-example#readme",
"engines": {
"node": ">=8.9.4"
"node": ">=10.5.0"
},
"scripts": {
"test": "standard && nsp check && ava",
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
Expand All @@ -32,6 +32,7 @@
"start": "next start",
"export": "next build && next export",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"cleanup": "rm -rf .next && rm -rf out",
"deploy": "npm run export && now --static out --name gun-next-example"
},
"keywords": [
Expand All @@ -48,7 +49,6 @@
"devDependencies": {
"ava": "0.25.0",
"coveralls": "3.0.1",
"nsp": "3.2.1",
"nyc": "12.0.2",
"standard": "11.0.1"
}
Expand Down

0 comments on commit d8a72fb

Please sign in to comment.