lint-to-the-future
Version:
A modern way to progressively update your code to the best practices
117 lines • 3.66 kB
JSON
{
"name": "lint-to-the-future",
"version": "2.6.3",
"description": "A modern way to progressively update your code to the best practices",
"repository": "https://github.com/mansona/lint-to-the-future",
"license": "MIT",
"author": "Chris Manson <chris@manson.ie>",
"bin": {
"lint-to-the-future": "cli.js",
"lttf": "cli.js"
},
"directories": {
"doc": "doc",
"test": "tests"
},
"files": [
"cli.js",
"dist"
],
"dependencies": {
"commander": "^9.4.1",
"fs-extra": "^7.0.1",
"import-cwd": "^3.0.0",
"node-fetch": "^2.6.0",
"temporal-polyfill": "^0.2.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@ember/optional-features": "^2.1.0",
"@ember/render-modifiers": "^2.1.0",
"@ember/string": "^3.1.1",
"@ember/test-helpers": "^3.3.1",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"broccoli-asset-rev": "^3.0.0",
"chai": "^4.3.6",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^8.2.2",
"ember-auto-import": "^2.7.4",
"ember-body-class": "^3.0.0",
"ember-cli": "~5.11.0",
"ember-cli-app-version": "^6.0.1",
"ember-cli-babel": "^8.2.0",
"ember-cli-clean-css": "^3.0.0",
"ember-cli-dependency-checker": "^3.3.2",
"ember-cli-htmlbars": "^6.3.0",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-terser": "^4.0.2",
"ember-data": "~5.3.8",
"ember-fetch": "^8.1.2",
"ember-inflector": "^5.0.1",
"ember-load-initializers": "^2.1.2",
"ember-modifier": "^4.2.0",
"ember-page-title": "^8.2.3",
"ember-qunit": "^8.1.0",
"ember-resolver": "^11.0.1",
"ember-source": "~5.11.0",
"ember-template-lint": "^5.13.0",
"ember-test-selectors": "^7.0.0",
"ember-welcome-page": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^11.12.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-qunit": "^8.1.1",
"execa": "^7.0.0",
"express": "^4.17.1",
"fixturify-project": "^7.1.3",
"frappe-charts": "^1.5.2",
"glob": "^4.5.3",
"lint-to-the-future-eslint": "^2.0.1",
"loader.js": "^4.7.0",
"mocha": "^10.1.0",
"morgan": "^1.10.0",
"prettier": "^3.3.3",
"qunit": "^2.22.0",
"qunit-dom": "^2.0.0",
"release-plan": "^0.9.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.1.0",
"temp": "^0.9.4",
"tracked-built-ins": "^3.3.0",
"webpack": "^5.93.0"
},
"packageManager": "pnpm@7.33.7+sha512.7afe2410642b39c698df46da4ce5c7231a5cce360698d69f8cf8f42257d40b3e43f231053b07b8de849fd4ffbf4a71ff57b835137777a352388f3d3da747200e",
"engines": {
"node": ">= 18"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"paths": [
"lib/testem-middleware"
]
},
"scripts": {
"build": "ember build --environment=production",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ember serve",
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
"test:ember": "ember test",
"test:node": "mocha node-tests/*"
}
}