Update dependencies and meta tweaks

This commit is contained in:
Sindre Sorhus 2018-12-26 02:18:40 +01:00
parent 90c7a92ff1
commit 4726b1bfda
4 changed files with 12 additions and 12 deletions

View file

@ -3,3 +3,4 @@
[options] [options]
suppress_comment= \\(.\\|\n\\)*\\$ExpectError suppress_comment= \\(.\\|\n\\)*\\$ExpectError
include_warnings=true

View file

@ -1,5 +1,6 @@
language: node_js language: node_js
node_js: node_js:
- '10'
- '8' - '8'
- '6' - '6'
after_success: after_success:

View file

@ -8,7 +8,7 @@
"node": ">=6" "node": ">=6"
}, },
"scripts": { "scripts": {
"test": "xo && nyc ava && tsd-check && flow --max-warnings=0", "test": "xo && nyc ava && tsd-check && flow",
"bench": "matcha benchmark.js" "bench": "matcha benchmark.js"
}, },
"files": [ "files": [
@ -43,20 +43,20 @@
"dependencies": { "dependencies": {
"ansi-styles": "^3.2.1", "ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5", "escape-string-regexp": "^1.0.5",
"supports-color": "^5.5.0" "supports-color": "^6.0.0"
}, },
"devDependencies": { "devDependencies": {
"ava": "^0.25.0", "@sindresorhus/tsconfig": "^0.1.1",
"ava": "^1.0.1",
"coveralls": "^3.0.2", "coveralls": "^3.0.2",
"execa": "^1.0.0", "execa": "^1.0.0",
"flow-bin": "^0.81.0", "flow-bin": "^0.89.0",
"import-fresh": "^2.0.0", "import-fresh": "^3.0.0",
"matcha": "^0.7.0", "matcha": "^0.7.0",
"nyc": "^13.0.1", "nyc": "^13.1.0",
"resolve-from": "^4.0.0", "resolve-from": "^4.0.0",
"tsd-check": "^0.2.1", "tsd-check": "^0.3.0",
"typescript": "^2.5.3", "xo": "^0.23.0"
"xo": "0.20.3"
}, },
"types": "index.d.ts", "types": "index.d.ts",
"xo": { "xo": {

View file

@ -1,8 +1,6 @@
{ {
"extends": "@sindresorhus/tsconfig",
"compilerOptions": { "compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noEmit": true, "noEmit": true,
"allowJs": true "allowJs": true
} }