Skip to content

Commit

Permalink
Update deps (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksi Pekkala committed Jun 3, 2019
1 parent ddbf309 commit dd58e69
Show file tree
Hide file tree
Showing 3 changed files with 2,587 additions and 1,630 deletions.
22 changes: 7 additions & 15 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
module.exports = {
testEnvironment: 'node',
transform: {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
'^.+\\.tsx?$': 'ts-jest'
},
testRegex: "(/__tests__/.*|\\.(test))\\.(ts|js)$",
testRegex: '(/__tests__/.*|\\.(test))\\.(ts|js)$',
globals: {
'ts-jest': {
skipBabel: true
babelConfig: false
}
},
mapCoverage: true,
moduleDirectories: ['node_modules', 'src'],
moduleFileExtensions: ['ts', 'js', 'json'],
roots: [
'<rootDir>/__tests__'
],
testPathIgnorePatterns: [
'/node_modules/'
],
roots: ['<rootDir>/__tests__'],
testPathIgnorePatterns: ['/node_modules/'],
coverageDirectory: 'coverage',
collectCoverageFrom: [
'src/**/*.{ts,tsx,js,jsx}',
'!src/**/*.d.ts',
]
};
collectCoverageFrom: ['src/**/*.{ts,tsx,js,jsx}', '!src/**/*.d.ts']
}
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"clean": "rimraf coverage build",
"build": "yarn clean && tsc -p tsconfig.release.json",
"format": "prettier --write {src,test}/**/*.ts",
"lint": "tslint --project . --type-check src/**/*.ts",
"lint": "tslint --project . src/**/*.ts",
"prepare": "yarn build",
"send-coverage": "codecov -f coverage/*.json",
"test": "jest --coverage",
Expand All @@ -28,30 +28,30 @@
"singleQuote": true
},
"dependencies": {
"class-transformer": "^0.1.9",
"class-validator": "^0.7.3",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"openapi3-ts": "^1.0.0",
"reflect-metadata": "^0.1.10",
"tslib": "^1.8.0"
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"debug": "^4.1.1",
"lodash": "4.14",
"openapi3-ts": "^1.3.0",
"reflect-metadata": "^0.1.13",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/jest": "^21.1.8",
"@types/lodash": "^4.14.85",
"@types/prettier": "^1.8.0",
"@types/reflect-metadata": "^0.0.5",
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.133",
"@types/prettier": "^1.16.4",
"@types/reflect-metadata": "^0.1.0",
"@types/rimraf": "^2.0.2",
"codecov": "^3.0.0",
"jest": "^21.2.1",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"ts-jest": "^21.2.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"tslint-config-standard": "^7.0.0",
"tsutils": "^2.12.2",
"typescript": "^2.6.1"
"codecov": "^3.5.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tsutils": "^3.13.0",
"typescript": "^3.5.1"
}
}

0 comments on commit dd58e69

Please sign in to comment.