-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "eslint-plugin-primer-react",
"version": "6.1.6",
"description": "ESLint rules for Primer React",
"main": "src/index.js",
"scripts": {
"format": "prettier --cache --write '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"format:check": "prettier --cache --list-different '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"lint": "eslint .",
"lint:md": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!.github\" \"!.changeset\" \"!node_modules\" \"!CHANGELOG.md\"",
"release": "changeset publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/primer/eslint-plugin-primer-react.git"
},
"keywords": [
"eslint",
"eslintplugin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/primer/eslint-plugin-primer-react/issues"
},
"homepage": "https://github.com/primer/eslint-plugin-primer-react#readme",
"peerDependencies": {
"eslint": "^8.42.0"
},
"dependencies": {
"@styled-system/props": "^5.1.5",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-traverse": "^1.0.0",
"lodash": "^4.17.21",
"styled-system": "^5.1.5",
"@typescript-eslint/utils": "7.16.0",
"typescript": "^5.5.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@github/markdownlint-github": "^0.6.3",
"@github/prettier-config": "0.0.6",
"eslint": "^8.42.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"markdownlint-cli2": "^0.14.0",
"markdownlint-cli2-formatter-pretty": "^0.0.7",
"@typescript-eslint/rule-tester": "7.16.0",
"@types/jest": "^29.5.13"
},
"prettier": "@github/prettier-config"
}