-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "eslint-config-vtex",
"version": "15.1.0",
"description": "VTEX's eslint config",
"main": "index.js",
"scripts": {
"eslint-check": "eslint-config-prettier index.js",
"dump-config": "eslint-config-prettier index.js > config-dump.json",
"version": "chan release $npm_package_version && git add CHANGELOG.md"
},
"keywords": [
"eslint",
"config",
"vtex"
],
"contributors": [
"Breno Calazans <[email protected]>",
"Christian Kaisermann <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vtex/javascript/issues"
},
"homepage": "https://github.com/vtex/typescript",
"repository": {
"type": "git",
"url": "https://github.com/vtex/typescript.git",
"directory": "packages/eslint-config-vtex"
},
"files": [
"index.js",
"rules/",
"lib/"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"confusing-browser-globals": "^1.0.10",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vtex": "^2.3.0"
},
"peerDependencies": {
"eslint": "^8",
"prettier": "^2",
"typescript": "^3 || ^4"
}
}