Skip to content
This repository has been archived by the owner on Jun 22, 2020. It is now read-only.

Commit

Permalink
fix(package): accept TS ^3 as a peer
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyclarkson committed Aug 1, 2018
1 parent 2a1d01b commit d5ef08c
Show file tree
Hide file tree
Showing 4 changed files with 645 additions and 744 deletions.
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,50 +55,50 @@
"doc": "docs"
},
"dependencies": {
"acorn": "^5.6.2",
"acorn": "^5.7.1",
"core-js": "^2.5.7",
"escodegen": "^1.10.0",
"escodegen": "^1.11.0",
"estraverse": "^4.2.0",
"winston": "^3.0.0",
"yargs": "^11.0.0"
"yargs": "^12.0.1"
},
"peerDependencies": {
"typescript": "^2.0.0"
"typescript": "^2 || ^3"
},
"optionalDependencies": {
"acorn-jsx": "^4.1.1",
"escodegen-wallaby": "^1.6.18",
"escodegen-wallaby": "^1.6.19",
"estraverse-fb": "^1.3.2"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"@types/acorn": "^4.0.3",
"@types/core-js": "^2.5.0",
"@types/escodegen": "^0.0.6",
"@types/estraverse": "^0.0.6",
"@types/jest": "^23.0.2",
"@types/lodash": "^4.14.109",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.115",
"@types/winston": "^2.3.9",
"@types/yargs": "^11.0.0",
"codecov": "^3.0.2",
"@types/yargs": "^11.1.1",
"codecov": "^3.0.4",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.0.0-rc.8",
"jest": "^23.1.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"jest-junit-reporter": "^1.1.0",
"opn-cli": "^3.1.0",
"rollup": "^0.61.0",
"rollup": "^0.63.5",
"rollup-plugin-typescript-path-mapping": "^1.0.2",
"semantic-release": "^15.5.2",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"semantic-release": "^15.9.3",
"ts-jest": "22.4.2",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.1",
"typescript": "^3.0.1",
"typescript-formatter": "^7.2.2",
"yaml-lint": "^1.2.3"
"yaml-lint": "^1.2.4"
},
"config": {
"commitizen": {
Expand All @@ -116,7 +116,7 @@
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"excludePrivate": true,
"excludeExternal": true,
"logger": "none",
"exclude": "**/*.test.ts"
"exclude": "**/*.test.ts",
"ignoreCompilerErrors": true
}
}
1 change: 1 addition & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": false,
"completed-docs": false,
"file-name-casing": false,
"indent": [true, "spaces", 2],
"match-default-export-name": false,
"max-classes-per-file": false,
Expand Down
Loading

0 comments on commit d5ef08c

Please sign in to comment.