-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
119 lines (119 loc) · 3.69 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
{
"name": "eslint-plugin-svelte",
"version": "3.0.0-next.7",
"description": "ESLint plugin for Svelte using AST",
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",
"author": "Yosuke Ota (https://github.com/ota-meshi)",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"engines": {
"node": "^18.20.4 || ^20.18.0 || >=22.10.0"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"svelte",
"sveltejs"
],
"scripts": {
"build": "pnpm run build:meta && pnpm run build:ts",
"build:meta": "pnpm run ts ./tools/update-meta.ts",
"build:ts": "tsc --project ./tsconfig.build.json",
"clean": "rimraf lib coverage build .svelte-kit svelte.config-dist.js",
"cover": "c8 --reporter=lcov pnpm run test",
"debug": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"lint": "run-p lint:*",
"lint-fix": "pnpm run lint:es --fix",
"lint:es": "eslint --cache .",
"mocha": "pnpm run ts ./node_modules/mocha/bin/mocha.js",
"new": "pnpm run ts ./tools/new-rule.ts",
"prebuild": "pnpm run clean",
"prerelease": "pnpm run clean && pnpm run build",
"release": "changeset publish",
"test": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"test:debug": "env-cmd -e debug pnpm run test",
"test:update-fixtures": "env-cmd -e update-fixtures pnpm run test",
"ts": "node --import tsx/esm",
"typecov": "type-coverage",
"update": "pnpm run ts ./tools/update.ts",
"version": "env-cmd -e version pnpm run update",
"version:ci": "env-cmd -e version-ci pnpm run update && changeset version"
},
"peerDependencies": {
"eslint": "^8.57.1 || ^9.0.0",
"svelte": "^3.37.0 || ^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"svelte": {
"optional": true
}
},
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.1",
"@jridgewell/sourcemap-codec": "^1.5.0",
"eslint-compat-utils": "^0.6.4",
"esutils": "^2.0.3",
"known-css-properties": "^0.35.0",
"postcss": "^8.4.49",
"postcss-load-config": "^3.1.4",
"postcss-safe-parser": "^7.0.0",
"postcss-selector-parser": "^7.0.0",
"semver": "^7.6.3",
"svelte-eslint-parser": "^1.0.0-next.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-function-bind": "^7.25.9",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/babel__core": "^7.20.5",
"@types/eslint-utils": "^3.0.5",
"@types/esutils": "^2.0.2",
"@types/json-schema": "^7.0.15",
"@types/less": "^3.0.7",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"@types/postcss-safe-parser": "^5.0.4",
"@types/semver": "^7.5.8",
"@types/stylus": "^0.48.43",
"acorn": "^8.14.0",
"assert": "^2.1.0",
"esbuild": "^0.24.0",
"eslint-scope": "^8.2.0",
"eslint-typegen": "^0.3.2",
"eslint-visitor-keys": "^4.2.0",
"espree": "^10.3.0",
"less": "^4.2.1",
"mocha": "^11.0.0",
"postcss-nested": "^7.0.2",
"sass": "^1.81.0",
"source-map-js": "^1.2.1",
"stylus": "^0.64.0",
"svelte": "^5.2.9",
"svelte-i18n": "^4.0.1",
"tsx": "^4.19.2",
"type-coverage": "^2.29.7",
"yaml": "^2.6.1"
},
"publishConfig": {
"access": "public"
},
"typeCoverage": {
"atLeast": 98.9,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}