Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn authored May 24, 2020
1 parent 7ee06d8 commit 00f25f8
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
12 changes: 12 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"all": true,
"exclude": [
"{coverage,test}/**",
".eslintrc.js",
"index.d.ts"
],
"reporter": [
"html",
"lcov"
]
}
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ jobs:
- run: npm install --no-audit
- run: npm test
- uses: codecov/codecov-action@v1
with:
file: coverage/lcov.info
name: ${{ matrix.os }}/${{ matrix.node-version }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/node_modules
.nyc_output
coverage
21 changes: 7 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0"
},
"scripts": {
"test": "as-i-preach && nyc ava"
"test": "as-i-preach && c8 ava"
},
"repository": {
"type": "git",
Expand All @@ -30,28 +30,21 @@
"js-string-escape": "^1.0.1",
"lodash": "^4.17.15",
"md5-hex": "^3.0.1",
"semver": "^7.1.3",
"semver": "^7.3.2",
"well-known-symbols": "^2.0.0"
},
"devDependencies": {
"@novemberborn/eslint-plugin-as-i-preach": "^12.0.0",
"ava": "^3.5.1",
"ava": "^3.8.2",
"c8": "^7.1.2",
"eslint": "^6.8.0",
"eslint-plugin-ava": "^10.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-ava": "^10.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^17.2.0",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
]
}
}

0 comments on commit 00f25f8

Please sign in to comment.