Skip to content

Commit 00f25f8

Browse files
authored
Update dependencies
1 parent 7ee06d8 commit 00f25f8

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

.c8rc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"all": true,
3+
"exclude": [
4+
"{coverage,test}/**",
5+
".eslintrc.js",
6+
"index.d.ts"
7+
],
8+
"reporter": [
9+
"html",
10+
"lcov"
11+
]
12+
}

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ jobs:
2424
- run: npm install --no-audit
2525
- run: npm test
2626
- uses: codecov/codecov-action@v1
27+
with:
28+
file: coverage/lcov.info
29+
name: ${{ matrix.os }}/${{ matrix.node-version }}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/node_modules
2-
.nyc_output
32
coverage

package.json

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0"
1212
},
1313
"scripts": {
14-
"test": "as-i-preach && nyc ava"
14+
"test": "as-i-preach && c8 ava"
1515
},
1616
"repository": {
1717
"type": "git",
@@ -30,28 +30,21 @@
3030
"js-string-escape": "^1.0.1",
3131
"lodash": "^4.17.15",
3232
"md5-hex": "^3.0.1",
33-
"semver": "^7.1.3",
33+
"semver": "^7.3.2",
3434
"well-known-symbols": "^2.0.0"
3535
},
3636
"devDependencies": {
3737
"@novemberborn/eslint-plugin-as-i-preach": "^12.0.0",
38-
"ava": "^3.5.1",
38+
"ava": "^3.8.2",
39+
"c8": "^7.1.2",
3940
"eslint": "^6.8.0",
40-
"eslint-plugin-ava": "^10.2.0",
41-
"eslint-plugin-import": "^2.20.1",
42-
"eslint-plugin-node": "^11.0.0",
41+
"eslint-plugin-ava": "^10.3.0",
42+
"eslint-plugin-import": "^2.20.2",
43+
"eslint-plugin-node": "^11.1.0",
4344
"eslint-plugin-promise": "^4.2.1",
4445
"eslint-plugin-security": "^1.4.0",
4546
"eslint-plugin-standard": "^4.0.1",
4647
"eslint-plugin-unicorn": "^17.2.0",
47-
"nyc": "^15.0.0",
4848
"proxyquire": "^2.1.3"
49-
},
50-
"nyc": {
51-
"reporter": [
52-
"html",
53-
"lcov",
54-
"text"
55-
]
5649
}
5750
}

0 commit comments

Comments
 (0)