Skip to content

Commit 6a62326

Browse files
committed
Upgrade dependencies
1 parent cae2ea3 commit 6a62326

File tree

4 files changed

+1990
-615
lines changed

4 files changed

+1990
-615
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
dist
33
coverage
4+
.jest-cache

jest.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
cacheDirectory: '.jest-cache',
3+
testEnvironment: 'node',
4+
collectCoverageFrom: ['src/*.js'],
5+
};

package.json

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,35 +30,29 @@
3030
"node": ">=6.0.0"
3131
},
3232
"scripts": {
33-
"test": "jest",
34-
"watch:test": "jest --watch"
35-
},
36-
"jest": {
37-
"testEnvironment": "node",
38-
"collectCoverageFrom": [
39-
"src/*.js"
40-
]
33+
"lint": "eslint src/",
34+
"test": "jest"
4135
},
4236
"dependencies": {
43-
"js-yaml": "^3.5.4",
37+
"js-yaml": "^3.12.0",
4438
"postcss": "^7.0.2",
4539
"reduce-function-call": "^1.0.1"
4640
},
4741
"devDependencies": {
48-
"babel-cli": "^6.24.1",
42+
"babel-cli": "^6.26.0",
4943
"babel-eslint": "^7.2.3",
5044
"babel-plugin-transform-object-assign": "^6.1.18",
51-
"babel-plugin-transform-object-rest-spread": "^6.23.0",
52-
"babel-preset-env": "^1.4.0",
53-
"coveralls": "^2.13.1",
45+
"babel-plugin-transform-object-rest-spread": "^6.26.0",
46+
"babel-preset-env": "^1.7.0",
47+
"coveralls": "^3.0.2",
5448
"eslint": "^3.9.1",
5549
"eslint-config-standard": "^10.2.1",
56-
"eslint-plugin-import": "^2.2.0",
50+
"eslint-plugin-import": "^2.13.0",
5751
"eslint-plugin-node": "^5.0.0",
58-
"eslint-plugin-promise": "^3.5.0",
59-
"eslint-plugin-standard": "^3.0.1",
60-
"jest-cli": "^20.0.0",
52+
"eslint-plugin-promise": "^3.8.0",
53+
"eslint-plugin-standard": "^3.1.0",
54+
"jest": "^23.5.0",
6155
"opn-cli": "^3.0.0",
62-
"postcss-reporter": "^4.0.0"
56+
"postcss-reporter": "^5.0.0"
6357
}
6458
}

0 commit comments

Comments
 (0)