discourse/app/assets/javascripts/ember-production-deprecations/package.json
Jarek Radosz 5584fb1e3b
DEV: Clean up package.json files (#22349)
Motivation: aligning us with JS/Ember practices (runtime deps in `dependencies`, build/dev-time deps in `devDependencies`)

1. Move deps to devDeps where applicable (rule of thumb: it's a devDep unless it's required at runtime by the rails app or it's imported in the addon's code)
2. Remove unused dependencies and add missing ones (in addons)
3. Remove empty `repository` fields
4. Move `engines` and `ember` fields to the bottom
2023-06-30 13:01:45 +02:00

15 lines
355 B
JSON

{
"name": "ember-production-deprecations",
"version": "1.0.0",
"description": "Prevents ember-cli from stripping deprecations in the production build",
"author": "Discourse",
"license": "GPL-2.0-only",
"keywords": [
"ember-addon"
],
"ember-addon": {
"after": "ember-cli-babel",
"before": "ember-cli-deprecation-workflow"
}
}