2016-10-21 16:56:05 -04:00
|
|
|
{
|
|
|
|
"name": "eslint-config-scratch",
|
2025-07-22 01:11:29 +00:00
|
|
|
"version": "11.0.38",
|
2016-10-21 16:56:05 -04:00
|
|
|
"description": "Shareable ESLint config for Scratch",
|
2025-03-27 15:29:30 -07:00
|
|
|
"main": "./lib/index.mjs",
|
2016-10-21 16:56:05 -04:00
|
|
|
"scripts": {
|
2022-10-13 09:52:16 -07:00
|
|
|
"prepare": "husky install",
|
2025-03-27 15:29:30 -07:00
|
|
|
"format": "prettier --write . && eslint --fix",
|
2025-04-30 14:29:46 -07:00
|
|
|
"test:lint": "eslint && prettier --check .",
|
|
|
|
"test:vitest": "vitest run",
|
|
|
|
"test": "npm run test:lint && npm run test:vitest"
|
2016-10-21 16:56:05 -04:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-09-28 12:49:45 -04:00
|
|
|
"url": "https://github.com/scratchfoundation/eslint-config-scratch.git"
|
2016-10-21 16:56:05 -04:00
|
|
|
},
|
|
|
|
"author": "Massachusetts Institute of Technology",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"bugs": {
|
2023-09-28 12:49:45 -04:00
|
|
|
"url": "https://github.com/scratchfoundation/eslint-config-scratch/issues"
|
2016-10-21 16:56:05 -04:00
|
|
|
},
|
2023-09-28 12:49:45 -04:00
|
|
|
"homepage": "https://github.com/scratchfoundation/eslint-config-scratch#readme",
|
2016-10-21 16:56:05 -04:00
|
|
|
"keywords": [
|
|
|
|
"eslint",
|
|
|
|
"eslintconfig",
|
2025-03-28 15:05:27 -07:00
|
|
|
"prettier",
|
2016-10-21 16:56:05 -04:00
|
|
|
"scratch"
|
|
|
|
],
|
|
|
|
"peerDependencies": {
|
2025-03-26 07:42:18 -07:00
|
|
|
"eslint": "^9.23.0"
|
2016-10-22 12:07:39 -04:00
|
|
|
},
|
2025-03-26 07:54:09 -07:00
|
|
|
"dependencies": {
|
2025-07-05 14:43:40 +00:00
|
|
|
"@babel/eslint-parser": "7.28.0",
|
2025-04-15 22:58:19 +00:00
|
|
|
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
|
2025-03-26 07:54:09 -07:00
|
|
|
"@eslint/eslintrc": "3.3.1",
|
2025-07-15 07:53:24 +00:00
|
|
|
"@eslint/js": "9.31.0",
|
2025-06-24 01:59:34 +00:00
|
|
|
"@eslint/markdown": "6.6.0",
|
2025-03-27 15:29:30 -07:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "5.2.2",
|
2025-07-22 01:10:48 +00:00
|
|
|
"eslint-config-prettier": "10.1.8",
|
2025-06-18 22:10:21 +00:00
|
|
|
"eslint-plugin-formatjs": "5.4.0",
|
2025-05-22 20:44:03 +00:00
|
|
|
"eslint-plugin-html": "8.1.3",
|
2025-06-24 05:09:50 +00:00
|
|
|
"eslint-plugin-import": "2.32.0",
|
2025-06-14 17:50:26 +00:00
|
|
|
"eslint-plugin-jsdoc": "50.8.0",
|
2025-03-28 14:06:10 -07:00
|
|
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
2025-04-07 02:37:16 +00:00
|
|
|
"eslint-plugin-react": "7.37.5",
|
2025-03-28 14:06:10 -07:00
|
|
|
"eslint-plugin-react-hooks": "5.2.0",
|
2025-07-04 16:06:29 +00:00
|
|
|
"globals": "16.3.0",
|
2025-06-30 06:29:51 +00:00
|
|
|
"prettier": "3.6.2",
|
2025-07-24 22:40:14 +00:00
|
|
|
"typescript-eslint": "8.38.0"
|
2025-03-26 07:54:09 -07:00
|
|
|
},
|
2016-10-22 12:07:39 -04:00
|
|
|
"devDependencies": {
|
2025-05-11 10:39:16 +00:00
|
|
|
"@commitlint/cli": "19.8.1",
|
|
|
|
"@commitlint/config-conventional": "19.8.1",
|
|
|
|
"@commitlint/types": "19.8.1",
|
2025-07-15 07:53:24 +00:00
|
|
|
"eslint": "9.31.0",
|
2024-02-20 19:12:43 +00:00
|
|
|
"husky": "8.0.3",
|
2024-11-25 20:49:31 +00:00
|
|
|
"scratch-semantic-release-config": "3.0.0",
|
2025-07-15 03:52:33 +00:00
|
|
|
"semantic-release": "24.2.7",
|
2025-06-21 00:30:41 +00:00
|
|
|
"vitest": "3.2.4"
|
2016-10-22 12:07:39 -04:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
2022-10-13 07:46:29 -07:00
|
|
|
"path": "cz-conventional-changelog"
|
2016-10-22 12:07:39 -04:00
|
|
|
}
|
2016-10-21 16:56:05 -04:00
|
|
|
}
|
|
|
|
}
|