mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
5584fb1e3b
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
31 lines
698 B
JSON
31 lines
698 B
JSON
{
|
|
"name": "bootstrap-json",
|
|
"version": "1.0.0",
|
|
"description": "Express.js middleware that proxies ember cli requests and fetches bootstrap json",
|
|
"author": "Discourse",
|
|
"license": "GPL-2.0-only",
|
|
"keywords": [
|
|
"ember-addon"
|
|
],
|
|
"ember-addon": {
|
|
"before": [
|
|
"serve-files-middleware",
|
|
"history-support-middleware",
|
|
"proxy-server-middleware"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"clean-base-url": "^1.0.0",
|
|
"discourse-plugins": "1.0.0",
|
|
"express": "^4.18.2",
|
|
"html-entities": "^2.4.0",
|
|
"jsdom": "^22.1.0",
|
|
"node-fetch": "^3.3.1"
|
|
},
|
|
"engines": {
|
|
"node": "16.* || >= 18",
|
|
"npm": "please-use-yarn",
|
|
"yarn": ">= 1.21.1"
|
|
}
|
|
}
|