Skip to content

Commit

Permalink
run update, upgrade deps, lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Jul 4, 2018
1 parent 0b82d34 commit 51db7b2
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 11 deletions.
13 changes: 13 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
{
"extends": [
"eslint:recommended"
],

"env": {
"browser": false,
"es6": true,
"node": true,
"mocha": true
},

"parserOptions":{
"ecmaVersion": 9,
"sourceType": "module",
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
}
},

"globals": {
"document": false,
"navigator": false,
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# always ignore files
*.DS_Store
.idea
.vscode
*.sublime-*

# test related, or directories generated by tests
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ os:
language: node_js
node_js:
- node
- '10'
- '9'
- '8'
- '7'
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2017, Jon Schlinkert.
Copyright (c) 2015-present, Jon Schlinkert.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
15 changes: 9 additions & 6 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@
"index.js"
],
"dependencies": {
"is-number": "^4.0.0",
"repeat-string": "^1.6.1"
"is-number": "^6.0.0"
},
"devDependencies": {
"fill-range": "^4.0.0",
"gulp-format-md": "^0.1.12",
"mocha": "^3.2.0",
"fill-range": "^5.0.0",
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3",
"text-table": "^0.2.0",
"time-diff": "^0.3.1"
},
Expand All @@ -43,7 +42,7 @@
"to",
"year"
],
"version": "2.1.1",
"version": "3.0.0",
"bugs": {
"url": "https://github.com/micromatch/to-regex-range/issues"
},
Expand All @@ -59,5 +58,9 @@
"test",
"test.js",
"tmp"
],
"contributors": [
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Rouven Weßling (www.rouvenwessling.de)"
]
}
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,12 @@
"test": "mocha"
},
"dependencies": {
"is-number": "^4.0.0",
"repeat-string": "^1.6.1"
"is-number": "^6.0.0"
},
"devDependencies": {
"fill-range": "^5.0.0",
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.0",
"mocha": "^5.2.0",
"text-table": "^0.2.0",
"time-diff": "^0.3.1"
},
Expand Down Expand Up @@ -81,7 +80,11 @@
"./examples.js"
],
"reflinks": [
"micromatch"
"micromatch",
"0-5",
"0-9",
"1-5",
"1-9"
]
}
}

0 comments on commit 51db7b2

Please sign in to comment.