mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Although the Meteor jquery package is no long a core package (and thus is not tied to the Meteor release), it seems like a good idea to nudge folks towards installing jquery from npm, instead of relying on the very old version (1.12.1) residing in meteor/packages/non-core/jquery/jquery.js. Closes #10289.
19 lines
514 B
JSON
19 lines
514 B
JSON
{
|
|
"name": "css-injection-test",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "meteor run",
|
|
"test": "meteor test --once --driver-package meteortesting:mocha",
|
|
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
|
|
"visualize": "meteor --production --extra-packages bundle-visualizer"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.3.4",
|
|
"jquery": "^3.3.1",
|
|
"meteor-node-stubs": "^0.4.1"
|
|
},
|
|
"meteor": {
|
|
"mainModule": "css-injection-test.js"
|
|
}
|
|
}
|