Files
meteor/tools/tests/apps/modules/package.json
Ben Newman 38b5ac9ed3 Revert core package upgrades to Babel 7 for now.
While Babel 7 seems to work perfectly well, and the process of upgrading
has been useful, the upgrade is going to require Meteor developers to
update the babel-runtime npm package and their .babelrc plugins, a chore
with which Meteor can't help very much.

On top of that, Babel 7 is still in early beta. I don't want to ship
Meteor 1.6 with a critical component that could change in unexpected ways,
and I don't want to wait for Babel 7 to be finalized to ship Meteor 1.6.

Note that the Meteor command-line tool is still implemented using Babel 7,
which has historically been a great way to gain confidence in
Babel-related changes before pushing them out to all Meteor developers.

@GeoffreyBooth This should take some pressure off the CoffeeScript upgrade
for now. Let's aim for Meteor 1.6.1 for Babel 7 and CoffeeScript 2.0.
2017-09-22 17:19:26 -04:00

25 lines
903 B
JSON

{
"name": "modules-test-app",
"author": "Ben Newman <ben@meteor.com>",
"description": "Test app exercising many aspects of the Meteor module system.",
"private": true,
"dependencies": {
"aws-sdk": "^2.2.41",
"babel-runtime": "^6.26.0",
"github": "^0.2.4",
"idle-gc": "^1.0.1",
"meteor-node-stubs": "^0.2.0",
"moment": "2.11.1",
"mssql": "^3.1.1",
"regenerator-runtime": "^0.9.5",
"stripe": "^4.4.0",
"winston": "^2.3.1",
"babel-plugin-transform-do-expressions": "^6.22.0"
},
"scripts": {
"test": "METEOR_PROFILE=100 ../../../../meteor test --full-app --driver-package dispatch:mocha-phantomjs",
"browser": "METEOR_PROFILE=100 ../../../../meteor test --full-app --driver-package dispatch:mocha-browser",
"test-packages": "../../../../meteor test-packages --driver-package dispatch:mocha-phantomjs packages/modules-test-package"
}
}