Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Oct 20, 2023
1 parent 9123931 commit ea60863
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ coverage
.nyc_output
/lib
*.tsbuildinfo
.tap
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"build:test": "npm run build && npm test",
"build:watch": "npm run build -- --watch",
"clean": "rm -rf tsconfig.tsbuildinfo lib",
"coverage": "c8 tap --no-coverage test/*.js",
"coverage:ci": "c8 --reporter lcovonly tap --no-coverage test/*.js",
"coverage": "c8 tap --disable-coverage --allow-empty-coverage test/*.js",
"coverage:ci": "c8 --reporter lcovonly tap --disable-coverage --allow-empty-coverage test/*.js",
"lint": "eslint \"test/*.js\" \"src/**/*.ts\" \"src/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"test": "tap --no-coverage test/*.js"
"test": "tap --disable-coverage --allow-empty-coverage test/*.js"
},
"exports": "./lib/util.js",
"types": "./lib/util.d.ts",
Expand All @@ -45,15 +45,15 @@
"@typescript-eslint/eslint-plugin": "^6.0.0",
"c8": "^8.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tap": "^16.0.0",
"tap": "^18.5.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 16"
"node": ">= 18"
}
}

0 comments on commit ea60863

Please sign in to comment.