Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Commit

Permalink
Move types as dependencies in each package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimmo Sääskilahti committed Aug 30, 2019
1 parent 4d3083a commit ce0289a
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 42 deletions.
57 changes: 28 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 0 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,9 @@
]
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/content-type": "^1.1.3",
"@types/debug": "^4.1.4",
"@types/glob": "^7.1.1",
"@types/ini": "^1.3.30",
"@types/jest": "^24.0.11",
"@types/js-yaml": "^3.12.1",
"@types/json-pointer": "^1.0.30",
"@types/lodash": "^4.14.136",
"@types/mitm": "^1.3.2",
"@types/mkdirp": "^0.5.2",
"@types/node": "^8.10.51",
"@types/shimmer": "^1.0.1",
"@types/sinon": "^7.0.13",
"@types/uuid": "^3.4.5",
"@types/xregexp": "^3.0.30",
"axios": "^0.19.0",
"codecov": "^3.3.0",
"del-cli": "^1.1.0",
Expand Down
1 change: 1 addition & 0 deletions packages/unmock-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"dependencies": {
"commander": "^2.20.0",
"@types/glob": "^7.1.1",
"glob": "^7.1.3",
"unmock-core": "file:../unmock-core"
}
Expand Down
13 changes: 13 additions & 0 deletions packages/unmock-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,42 @@
"url": "https://github.com/unmock/unmock-js/issues"
},
"dependencies": {
"@types/node": "^8.10.51",
"@types/app-root-path": "^1.2.4",
"app-root-path": "^2.2.1",
"ajv": "^6.10.0",
"axios": "^0.18.0",
"boxen": "3.2.0",
"chalk": "^2.4.2",
"@types/debug": "^4.1.4",
"debug": "^4.1.1",
"@types/ini": "^1.3.30",
"ini": "^1.3.5",
"@types/js-yaml": "^3.12.1",
"js-yaml": "^3.13.1",
"@types/json-pointer": "^1.0.30",
"json-pointer": "^0.6.0",
"json-schema-deref-sync": "^0.10.1",
"json-schema-faker": "^0.5.0-rc17",
"loas3": "^0.1.1",
"@types/lodash": "^4.14.136",
"lodash": "^4.17.14",
"minimatch": "^3.0.4",
"@types/mitm": "^1.3.2",
"mitm": "^1.7.0",
"@types/mkdirp": "^0.5.2",
"mkdirp": "^0.5.1",
"querystring": "^0.2.0",
"readable-stream": "^3.4.0",
"@types/shimmer": "^1.0.1",
"shimmer": "^1.2.1",
"@types/sinon": "^7.0.13",
"sinon": "^7.4.1",
"swagger2openapi": "^5.3.0",
"@types/uuid": "^3.4.5",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"@types/xregexp": "^3.0.30",
"xregexp": "^4.2.4"
}
}

0 comments on commit ce0289a

Please sign in to comment.