Skip to content

Commit

Permalink
Require Node.js 10
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Mar 5, 2020
1 parent 8e1ec3a commit dc2d24d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
language: node_js
node_js:
- '12'
- '10'
- '8'
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
"description": "Slugify a string",
"license": "MIT",
"repository": "sindresorhus/slugify-cli",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
"url": "https://sindresorhus.com"
},
"bin": {
"slugify": "cli.js"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"test": "xo && ava"
Expand Down Expand Up @@ -44,11 +45,11 @@
],
"dependencies": {
"@sindresorhus/slugify": "^0.11.0",
"meow": "^5.0.0"
"meow": "^6.0.1"
},
"devDependencies": {
"ava": "^0.25.0",
"execa": "^1.0.0",
"xo": "^0.23.0"
"ava": "^1.0.0",
"execa": "^4.0.0",
"xo": "^0.26.1"
}
}
8 changes: 0 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

> Slugify a string

## Install

```
$ npm install --global slugify-cli
```


## Usage

```
Expand All @@ -31,12 +29,6 @@ $ slugify --help
unicorns_and_rainbows
```


## Related

- [slugify](https://github.com/sindresorhus/slugify) - API for this module


## License

MIT © [Sindre Sorhus](https://sindresorhus.com)

0 comments on commit dc2d24d

Please sign in to comment.