-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
43 lines (43 loc) · 927 Bytes
/
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
{
"name": "eslint-plugin-svelte3",
"version": "4.0.0",
"description": "An ESLint plugin for Svelte v3 components.",
"keywords": [
"eslint",
"eslintplugin",
"svelte",
"sveltejs"
],
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/eslint-plugin-svelte3.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/eslint-plugin-svelte3/issues"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"svelte": "^3.2.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"test": "npm run build && node test"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": ">=8.0.0",
"rollup": "^2",
"sourcemap-codec": "1.4.8",
"svelte": "^3.2.0",
"typescript": "^4.6.3"
}
}