-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
120 lines (120 loc) · 3.78 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
{
"name": "eslint-plugin-svelte",
"version": "2.40.0",
"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": "^14.17.0 || >=16.0.0"
},
"type": "commonjs",
"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 .nyc_output lib coverage build .svelte-kit svelte.config-dist.js",
"cover": "nyc --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 && pnpm run lint:style --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 -r esbuild-register",
"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": "^7.0.0 || ^8.0.0-0 || ^9.0.0-0",
"svelte": "^3.37.0 || ^4.0.0 || ^5.0.0-next.155"
},
"peerDependenciesMeta": {
"svelte": {
"optional": true
}
},
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"@jridgewell/sourcemap-codec": "^1.4.15",
"eslint-compat-utils": "^0.5.1",
"esutils": "^2.0.3",
"known-css-properties": "^0.34.0",
"postcss": "^8.4.38",
"postcss-load-config": "^3.1.4",
"postcss-safe-parser": "^6.0.0",
"postcss-selector-parser": "^6.1.0",
"semver": "^7.6.2",
"svelte-eslint-parser": "^0.39.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-function-bind": "^7.24.7",
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
"@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.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/postcss-safe-parser": "^5.0.4",
"@types/semver": "^7.5.8",
"@types/stylus": "^0.48.42",
"acorn": "^8.12.0",
"assert": "^2.1.0",
"esbuild": "^0.21.5",
"esbuild-register": "^3.5.0",
"eslint-scope": "^8.0.1",
"eslint-typegen": "^0.2.4",
"eslint-visitor-keys": "^4.0.0",
"espree": "^10.0.1",
"less": "^4.2.0",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"postcss-nested": "^6.0.1",
"sass": "^1.77.5",
"source-map-js": "^1.2.0",
"stylus": "^0.63.0",
"svelte": "^5.0.0-next.155",
"svelte-i18n": "^4.0.0",
"type-coverage": "^2.29.0",
"yaml": "^2.4.5"
},
"publishConfig": {
"access": "public"
},
"typeCoverage": {
"atLeast": 98.9,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}