-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "eslint-plugin-vtex",
"version": "2.3.0",
"description": "VTEX's ESLint plugin",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"docs",
"dist"
],
"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-plugin-vtex"
},
"contributors": [
"Christian Kaisermann <[email protected]>",
"Gabriel Takashi Katakura <[email protected]>"
],
"keywords": [
"eslint",
"eslint-plugin",
"vtex"
],
"scripts": {
"version": "chan release $npm_package_version && git add CHANGELOG.md",
"watch": "tsup src/index.ts --watch",
"build": "tsup src/index.ts --format esm,cjs,iife --dts",
"test": "jest",
"prepare": "yarn build"
},
"jest": {
"transform": {
"\\.(js|ts)$": [
"babel-jest",
{
"configFile": "./test/babel.config.js"
}
]
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": false
},
"dependencies": {
"@typescript-eslint/utils": "^5.15.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@typescript-eslint/experimental-utils": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^29.7.0",
"jest": "^27.5.1",
"tsup": "^8.0.2"
},
"peerDependencies": {
"eslint": "^6 || ^7 || ^8"
}
}