mirror of
https://github.com/meteor/meteor.git
synced 2026-01-09 07:38:15 -05:00
88 lines
2.2 KiB
JSON
88 lines
2.2 KiB
JSON
{
|
|
"name": "meteor",
|
|
"version": "0.0.1",
|
|
"description": "Meteor's main repository, containing the Meteor tool, core packages, and documentation.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/meteor/meteor.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/meteor/meteor/issues"
|
|
},
|
|
"homepage": "https://www.meteor.com/",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.3",
|
|
"@babel/eslint-parser": "^7.21.3",
|
|
"@babel/eslint-plugin": "^7.19.1",
|
|
"@babel/preset-react": "^7.18.6",
|
|
"@types/lodash.isempty": "^4.4.9",
|
|
"@types/node": "^18.16.18",
|
|
"@types/sockjs": "^0.3.36",
|
|
"@types/sockjs-client": "^1.5.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-config-vazco": "^7.1.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"prettier": "^2.8.8",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"scripts": {
|
|
"test:idle-bot": "node --test .github/scripts/__tests__/inactive-issues.test.js"
|
|
},
|
|
"jshintConfig": {
|
|
"esversion": 11
|
|
},
|
|
"prettier": {
|
|
"semi": true,
|
|
"singleQuote": false
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "vazco",
|
|
"rules": {
|
|
"global-require": "off",
|
|
"no-console": "off",
|
|
"camelcase": "warn",
|
|
"consistent-return": "off",
|
|
"quotes": [
|
|
"warn",
|
|
"single",
|
|
{
|
|
"allowTemplateLiterals": true
|
|
}
|
|
],
|
|
"no-shadow": [
|
|
"error",
|
|
{
|
|
"allow": [
|
|
"resolve"
|
|
]
|
|
}
|
|
],
|
|
"no-use-before-define": "warn",
|
|
"import/no-unresolved": "warn",
|
|
"require-await": "warn",
|
|
"space-before-function-paren": [
|
|
"warn",
|
|
{
|
|
"anonymous": "never",
|
|
"named": "never",
|
|
"asyncArrow": "always"
|
|
}
|
|
],
|
|
"complexity": "off",
|
|
"func-names": "off",
|
|
"no-undef": "warn",
|
|
"curly": "off",
|
|
"sort-imports": "off"
|
|
}
|
|
}
|
|
}
|