Skip to content

Commit 168dd78

Browse files
committed
chore: Update dev deps, add node 12
1 parent 063bc3f commit 168dd78

File tree

5 files changed

+3204
-2330
lines changed

5 files changed

+3204
-2330
lines changed

.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"ecmaVersion": 6
3+
"ecmaVersion": 2019
44
},
55
"extends": "eslint:recommended",
66
"env": {

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
language: node_js
22
node_js:
3+
- "12"
34
- "10"
45
- "8"
5-
- "6"
6-
before_install: yarn global add greenkeeper-lockfile@1
7-
before_script: greenkeeper-lockfile-update
86
script:
97
- yarn lint
108
- yarn test:coverage
11-
after_script: greenkeeper-lockfile-upload
129
after_success:
1310
- bash <(curl -s https://codecov.io/bash)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 Sergey Tatarintsev
3+
Copyright (c) Sergey Tatarintsev
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,22 @@
1919
"git add"
2020
]
2121
},
22+
"jest":{
23+
"testEnvironment": "node"
24+
},
2225
"author": "Sergey Tatarintsev <[email protected]> (https://github.com/SevInf)",
2326
"license": "MIT",
2427
"dependencies": {
2528
"glob-stream": "^6.1.0",
2629
"worker-farm": "^1.4.1"
2730
},
2831
"devDependencies": {
29-
"eslint": "^5.0.0",
30-
"husky": "^0.14.3",
31-
"jest": "^22.0.0",
32-
"lint-staged": "^7.0.0",
32+
"eslint": "^6.2.0",
33+
"husky": "^3.0.4",
34+
"jest": "^24.9.0",
35+
"lint-staged": "^9.2.3",
3336
"prettier": "^1.5.3",
34-
"standard-version": "^4.2.0"
37+
"standard-version": "^7.0.0"
3538
},
3639
"directories": {
3740
"test": "test"

0 commit comments

Comments
 (0)