-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
103 lines (103 loc) · 3.33 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
{
"name": "svelte-eslint-parser",
"version": "0.22.0",
"description": "Svelte parser for ESLint",
"repository": "git+https://github.com/ota-meshi/svelte-eslint-parser.git",
"homepage": "https://github.com/ota-meshi/svelte-eslint-parser#readme",
"author": "Yosuke Ota (https://github.com/ota-meshi)",
"contributors": [
"JounQin (https://github.com/JounQin)"
],
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"svelte",
"sveltejs",
"eslint",
"parser"
],
"scripts": {
"benchmark": "yarn ts benchmark/index.ts",
"build": "tsc --project ./tsconfig.build.json",
"clean": "rimraf .nyc_output lib coverage",
"cover": "nyc --reporter=lcov yarn test",
"debug": "yarn mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"eslint-fix": "yarn lint --fix",
"eslint-playground": "eslint tests/fixtures --ext .svelte --config .eslintrc-for-playground.js --format codeframe",
"lint": "eslint . --ext .js,.ts,.json,.yaml,.yml,.svelte",
"mocha": "yarn ts ./node_modules/mocha/bin/mocha.js",
"prebuild": "yarn clean",
"prerelease": "yarn clean && yarn build",
"preversion": "yarn lint && yarn test",
"release": "changeset publish",
"test": "yarn mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"ts": "node -r esbuild-register",
"update-fixtures": "yarn ts ./tools/update-fixtures.ts"
},
"peerDependencies": {
"svelte": "^3.37.0"
},
"dependencies": {
"eslint-scope": "^7.0.0",
"eslint-visitor-keys": "^3.0.0",
"espree": "^9.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.2",
"@ota-meshi/eslint-plugin": "^0.13.0",
"@types/benchmark": "^2.1.1",
"@types/chai": "^4.3.0",
"@types/eslint": "^8.0.0",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "~5.45.0",
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"code-red": "^0.2.3",
"esbuild": "^0.15.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-json-schema-validator": "^4.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-dependencies": "^0.10.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.5.0",
"eslint-plugin-svelte": "^2.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-plugin-yml": "^1.0.0",
"estree-walker": "^3.0.0",
"locate-character": "^2.0.5",
"magic-string": "^0.26.0",
"mocha": "^10.0.0",
"mocha-chai-jest-snapshot": "^1.1.3",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"prettier-plugin-pkg": "^0.17.0",
"prettier-plugin-svelte": "^2.5.0",
"semver": "^7.3.5",
"string-replace-loader": "^3.0.3",
"svelte": "^3.46.1",
"typescript": "~4.9.0",
"vue-eslint-parser": "^9.0.0"
},
"publishConfig": {
"access": "public"
}
}