Skip to content

Commit

Permalink
Updated deps and dropped old Nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Mar 16, 2020
1 parent b531f96 commit 06547d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [6.x, 8.x, 10.x, 11.x, 12.x, 13.x]
node-version: [10.x, 11.x, 12.x, 13.x]

steps:
- uses: actions/checkout@v2
Expand Down
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Extremely fast utf8 only stream implementation",
"main": "index.js",
"scripts": {
"test": "standard && tap --no-esm -t 120 test.js"
"test": "standard && tap --no-ts --no-jsx --no-esm -t 120 test.js"
},
"repository": {
"type": "git",
Expand All @@ -27,13 +27,18 @@
"homepage": "https://github.com/mcollina/sonic-boom#readme",
"devDependencies": {
"fastbench": "^1.0.1",
"pre-commit": "^1.2.2",
"husky": "^4.2.3",
"proxyquire": "^2.1.0",
"standard": "^13.0.2",
"tap": "^12.1.0"
"standard": "^14.0.0",
"tap": "^14.0.0"
},
"dependencies": {
"atomic-sleep": "^1.0.0",
"flatstr": "^1.0.12"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}

0 comments on commit 06547d1

Please sign in to comment.