Files
meteor/tools/tests/apps/dev-bundle-bin-commands/package.json
Ben Newman 29ce8f2142 Adjust @babel/runtime version constraints in test app package.json files.
According to the plan described in #10134, whereas we had to pin these
versions to exactly 7.0.0-beta.55 for Meteor 1.7.0.4, we must now require
at least 7.0.0-beta.56 for Meteor 1.7.1, since other @babel/... packages
used by babel-compiler and meteor-babel are currently at beta.56.
2018-08-07 13:49:32 -04:00

14 lines
355 B
JSON

{
"name": "dev-bundle-bin-commands",
"private": true,
"scripts": {
"start": "meteor run",
"exit-with-status": "echo \"This script has an exit status\" && exit 1",
"exit-normally": "echo \"This script will exit normally\" && exit 0"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.56",
"meteor-node-stubs": "^0.4.1"
}
}