Skip to content

Commit ddfa053

Browse files
committed
chore: bump deps
1 parent efeb6e4 commit ddfa053

4 files changed

Lines changed: 2878 additions & 2992 deletions

File tree

.lintstagedrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
"*.md": filenames => filenames.map(filename => `remark ${filename} -qfo`),
3+
'package.json': 'fixpack',
4+
'*.js': 'xo --fix'
5+
};

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
node_js:
3-
- '8'
43
- '10'
4+
- '12'
55
script:
66
npm run test-coverage
77
after_success:

package.json

Lines changed: 25 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
"ava": {
77
"failFast": true,
88
"verbose": true,
9-
"helpers": [
10-
"test/helpers/**/*"
9+
"files": [
10+
"test/*.js",
11+
"test/**/*.js",
12+
"!test/helpers/*.js",
13+
"!test/helpers/**/*.js"
1114
]
1215
},
1316
"bugs": {
@@ -23,35 +26,35 @@
2326
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
2427
],
2528
"dependencies": {
26-
"error-stack-parser": "^2.0.4",
29+
"error-stack-parser": "^2.0.6",
2730
"is-whitespace": "^0.3.0",
2831
"iserror": "^0.0.2",
2932
"lodash": "^4.17.15",
30-
"parse-request": "^2.0.6",
33+
"parse-request": "^2.0.8",
3134
"prepare-stack-trace": "^0.0.4",
3235
"rfdc": "^1.1.4"
3336
},
3437
"devDependencies": {
35-
"@babel/cli": "^7.7.5",
36-
"@babel/core": "^7.7.5",
37-
"@babel/preset-env": "^7.7.6",
38-
"@commitlint/cli": "^8.2.0",
39-
"@commitlint/config-conventional": "^8.2.0",
40-
"ava": "^2.4.0",
41-
"codecov": "^3.6.1",
42-
"cross-env": "^6.0.3",
43-
"eslint": "^6.7.2",
38+
"@babel/cli": "^7.10.1",
39+
"@babel/core": "^7.10.2",
40+
"@babel/preset-env": "^7.10.2",
41+
"@commitlint/cli": "^8.3.5",
42+
"@commitlint/config-conventional": "^8.3.4",
43+
"ava": "^3.8.2",
44+
"codecov": "^3.7.0",
45+
"cross-env": "^7.0.2",
46+
"eslint": "6.x",
4447
"eslint-config-xo-lass": "^1.0.3",
45-
"eslint-plugin-node": "^10.0.0",
46-
"fixpack": "^2.3.1",
47-
"husky": "^3.1.0",
48-
"lint-staged": "^9.5.0",
49-
"nyc": "^14.1.1",
48+
"eslint-plugin-node": "^11.1.0",
49+
"fixpack": "^3.0.6",
50+
"husky": "^4.2.5",
51+
"lint-staged": "^10.2.7",
52+
"nyc": "^15.1.0",
5053
"parse-err": "^0.0.12",
51-
"remark-cli": "^7.0.1",
52-
"remark-preset-github": "^0.0.16",
53-
"rimraf": "^3.0.0",
54-
"xo": "^0.25.3"
54+
"remark-cli": "^8.0.0",
55+
"remark-preset-github": "^1.0.1",
56+
"rimraf": "^3.0.2",
57+
"xo": "0.25"
5558
},
5659
"engines": {
5760
"node": ">=6.4.0"
@@ -89,22 +92,6 @@
8992
"user"
9093
],
9194
"license": "MIT",
92-
"lint-staged": {
93-
"linters": {
94-
"*.js": [
95-
"xo --fix",
96-
"git add"
97-
],
98-
"*.md": [
99-
"remark . -qfo",
100-
"git add"
101-
],
102-
"package.json": [
103-
"fixpack",
104-
"git add"
105-
]
106-
}
107-
},
10895
"main": "lib/index.js",
10996
"prettier": {
11097
"singleQuote": true,

0 commit comments

Comments
 (0)