-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
141 lines (141 loc) · 3.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "eslint-plugin-eslint-config",
"version": "2.0.0",
"description": "ESLint rules for ESLint config files",
"keywords": [
"config",
"eslint",
"eslintplugin",
"eslint-plugin",
"eslintconfig",
"eslint-config"
],
"homepage": "https://github.com/g-rath/eslint-plugin-eslint-config#readme",
"bugs": {
"url": "https://github.com/g-rath/eslint-plugin-eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/g-rath/eslint-plugin-eslint-config.git"
},
"license": "MIT",
"author": "Gareth Jones",
"main": "lib/",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "test"
},
"files": [
"docs/",
"lib/",
"tsconfig.fake.json"
],
"scripts": {
"build": "babel --extensions .js,.ts src --out-dir lib --copy-files",
"lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"prettier:check": "prettier --check \"docs/**/*.md\" README.md \".github/**\" package.json tsconfig.json",
"prettier:write": "prettier --write \"docs/**/*.md\" README.md \".github/**\" package.json tsconfig.json",
"release": "semantic-release -r $npm_package_repository_url",
"test": "jest",
"tools:generate-rules-table": "tools/generate-rules-table.ts",
"typecheck": "tsc -p ."
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "prettier-config-ackama",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"projects": [
{
"displayName": "test",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/.*"
]
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/**/*.{js,ts}"
],
"testPathIgnorePatterns": [
"<rootDir>/lib/.*"
]
}
]
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^4.11.1",
"require-relative": "^0.8.7"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/dedent": "^0.7.0",
"@types/eslint": "^7.28.2",
"@types/jest": "^27.0.2",
"@types/node": "^12.19.11",
"@types/prettier": "^2.4.1",
"@types/require-relative": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.3.1",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"dedent": "^0.7.0",
"eslint": "^7.32.0",
"eslint-config-ackama": "^2.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jest-formatting": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.6",
"jest": "^27.3.1",
"jest-runner-eslint": "^0.10.0",
"lint-staged": "^10.5.3",
"prettier": "^2.4.1",
"prettier-config-ackama": "^0.1.2",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"eslint": ">=5"
},
"engines": {
"node": ">=10"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}