-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "@stencil-community/eslint-plugin",
"version": "0.9.0",
"description": "ESLint rules specific to Stencil JS projects.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"stencil",
"stencileslint",
"stencil eslint"
],
"contributors": [
"Tom Chinery <[email protected]>",
"Jack Woodward <[email protected]>",
"Ionic Team <[email protected]>",
"d0whc3r <[email protected]>"
],
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"build": "tsc -p . && rollup -c",
"test": "jest",
"version": "npm run build",
"release": "np --no-release-draft"
},
"dependencies": {
"eslint-utils": "^3.0.0",
"jsdom": "^25.0.0",
"tsutils": "^3.21.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0 || ^8.0.0",
"@typescript-eslint/parser": "^7.0.0 || ^8.0.0",
"eslint": "^8.0.0 || ^9.0.0",
"eslint-plugin-react": "^7.0.0",
"typescript": "^4.9.4 || ^5.0.0"
},
"devDependencies": {
"@types/eslint": "9.6.1",
"@types/estree": "^1.0.1",
"@types/jest": "^29.5.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^7.0.0 || ^8.5.0",
"@typescript-eslint/parser": "^7.0.0 || ^8.5.0",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"np": "^10.0.7",
"rollup": "^4.21.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stencil-community/stencil-eslint.git"
},
"license": "MIT"
}