forked from sveltejs/eslint-plugin-svelte3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "eslint-plugin-svelte3",
"version": "3.2.0",
"description": "An ESLint plugin for Svelte v3 components.",
"keywords": [
"eslint",
"eslintplugin",
"svelte",
"sveltejs"
],
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=10"
},
"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": ">=6.0.0",
"svelte": "^3.2.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"test": "npm run build && node test",
"dev-test": "rollup -cm && node test",
"lint": "eslint --ext .svelte .",
"lint:prettier": "prettier --write ."
},
"devDependencies": {
"eslint-plugin-custom-rules": "file://./test/samples/html",
"@rollup/plugin-node-resolve": "^11.2.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": ">=6.0.0",
"rollup": "^2",
"sourcemap-codec": "1.4.8",
"prettier": "2.3.2",
"svelte": "^3.2.0",
"typescript": "^4.0.0"
}
}