Skip to content

Commit

Permalink
Moving tsc to peer dependencies, so we will use users's version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Igmat committed Oct 27, 2016
1 parent 643725c commit edb8a3d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-jest",
"version": "0.1.10",
"version": "0.1.11",
"main": "index.js",
"types": "./dist/index.d.ts",
"description": "A preprocessor with sourcemap support to help use Typescript with Jest",
Expand Down Expand Up @@ -56,7 +56,6 @@
]
},
"dependencies": {
"typescript": "^2.0.3",
"source-map-support": "^0.4.4",
"glob-all": "^3.1.0",
"lodash.assign": "^4.2.0",
Expand All @@ -67,14 +66,18 @@
"jest-util": "^16.0.2",
"jest-config": "^16.0.2"
},
"peerDependencies": {
"typescript": "~2.0.6",
"jest": "~16.0.2"
},
"devDependencies": {
"@types/es6-shim": "latest",
"@types/jest": "latest",
"@types/react": "latest",
"@types/source-map-support": "latest",
"@types/node": "latest",
"typescript": "latest",
"tslint": "latest",
"typescript": "next",
"tslint": "next",

"react": "latest",
"react-test-renderer": "latest",
Expand Down
1 change: 0 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
Expand Down

0 comments on commit edb8a3d

Please sign in to comment.