Files
meteor/tools/tests/apps/custom-minifier/package.json
Ben Newman f6fcd620a7 Add a package.json to custom-minifiers test app.
Self-tests involving this test app were failing because of an undefined
jQuery reference on the client.
2019-11-26 12:49:23 -05:00

19 lines
498 B
JSON

{
"name": "custom-minifiers",
"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.7.4",
"jquery": "^3.4.1",
"meteor-node-stubs": "^1.0.0"
},
"meteor": {
"mainModule": "code.js"
}
}