mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
90 lines
2.4 KiB
JSON
90 lines
2.4 KiB
JSON
|
{
|
||
|
"name": "eslint-plugin-testing-library",
|
||
|
"version": "3.10.2",
|
||
|
"description": "ESLint rules for Testing Library",
|
||
|
"keywords": [
|
||
|
"eslint",
|
||
|
"eslintplugin",
|
||
|
"eslint-plugin"
|
||
|
],
|
||
|
"author": {
|
||
|
"name": "Mario Beltrán Alarcón",
|
||
|
"email": "belco90@gmail.com",
|
||
|
"url": "https://mario.dev/"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/testing-library/eslint-plugin-testing-library"
|
||
|
},
|
||
|
"homepage": "https://github.com/testing-library/eslint-plugin-testing-library",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/testing-library/eslint-plugin-testing-library/issues"
|
||
|
},
|
||
|
"release": {
|
||
|
"pkgRoot": "dist",
|
||
|
"branches": [
|
||
|
"+([0-9])?(.{+([0-9]),x}).x",
|
||
|
"main",
|
||
|
"next",
|
||
|
"next-major",
|
||
|
{
|
||
|
"name": "beta",
|
||
|
"prerelease": true
|
||
|
},
|
||
|
{
|
||
|
"name": "alpha",
|
||
|
"prerelease": true
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"build": "tsc",
|
||
|
"postbuild": "cpy README.md ./dist && cpy package.json ./dist && cpy LICENSE ./dist",
|
||
|
"lint": "eslint . --ext .js,.ts",
|
||
|
"lint:fix": "npm run lint -- --fix",
|
||
|
"format": "prettier --write README.md {lib,docs,tests}/**/*.{js,md}",
|
||
|
"test": "jest",
|
||
|
"test:ci": "jest --ci --coverage",
|
||
|
"test:update": "npm run test -- --u",
|
||
|
"test:watch": "npm run test -- --watch",
|
||
|
"semantic-release": "semantic-release"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@typescript-eslint/experimental-utils": "^3.10.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@commitlint/cli": "^9.1.2",
|
||
|
"@commitlint/config-conventional": "^9.1.2",
|
||
|
"@types/jest": "^25.2.3",
|
||
|
"@typescript-eslint/eslint-plugin": "^3.10.1",
|
||
|
"@typescript-eslint/parser": "^3.10.1",
|
||
|
"cpy-cli": "^3.1.1",
|
||
|
"eslint": "^7.9.0",
|
||
|
"eslint-config-prettier": "^6.11.0",
|
||
|
"eslint-config-standard": "^14.1.1",
|
||
|
"eslint-plugin-import": "^2.22.0",
|
||
|
"eslint-plugin-jest": "^24.0.2",
|
||
|
"eslint-plugin-jest-formatting": "^2.0.0",
|
||
|
"eslint-plugin-node": "^11.1.0",
|
||
|
"eslint-plugin-prettier": "^3.1.4",
|
||
|
"eslint-plugin-promise": "^4.2.1",
|
||
|
"eslint-plugin-standard": "^4.0.1",
|
||
|
"husky": "^4.3.0",
|
||
|
"jest": "^25.5.4",
|
||
|
"lint-staged": "^9.5.0",
|
||
|
"prettier": "1.19.1",
|
||
|
"semantic-release": "^16.0.4",
|
||
|
"ts-jest": "^25.5.1",
|
||
|
"typescript": "^4.0.3"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"eslint": "^5 || ^6 || ^7"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": "^10.12.0 || >=12.0.0",
|
||
|
"npm": ">=6"
|
||
|
},
|
||
|
"license": "MIT"
|
||
|
}
|