-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
81 lines (81 loc) · 2.87 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
{
"name": "svelte-eslint-parser",
"version": "0.5.0",
"description": "Svelte parser for ESLint",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run -s clean",
"build": "tsc --project ./tsconfig.build.json",
"clean": "rimraf .nyc_output lib coverage",
"lint": "eslint . --ext .js,.ts,.json",
"eslint-fix": "npm run lint -- --fix",
"test": "mocha --require ts-node/register \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"cover": "nyc --reporter=lcov npm run test",
"debug": "mocha --require ts-node/register/transpile-only \"tests/src/**/*.ts\" --reporter dot",
"preversion": "npm run lint && npm test",
"update-fixtures": "ts-node --transpile-only ./tools/update-fixtures.ts",
"eslint-playground": "eslint tests/fixtures --ext .svelte --config .eslintrc-for-playground.js --format codeframe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ota-meshi/svelte-eslint-parser.git"
},
"keywords": [
"svelte",
"sveltejs",
"eslint",
"parser"
],
"author": "Yosuke Ota",
"license": "MIT",
"bugs": {
"url": "https://github.com/ota-meshi/svelte-eslint-parser/issues"
},
"homepage": "https://github.com/ota-meshi/svelte-eslint-parser#readme",
"dependencies": {
"eslint-scope": "^6.0.0",
"eslint-visitor-keys": "^3.0.0",
"espree": "^9.0.0"
},
"peerDependencies": {
"svelte": "^3.37.0"
},
"devDependencies": {
"@ota-meshi/eslint-plugin": "^0.10.0",
"@ota-meshi/eslint-plugin-svelte": "^0.11.0",
"@types/eslint": "^7.2.0",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"code-red": "^0.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-json-schema-validator": "^1.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-dependencies": "^0.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.0.0",
"eslint-plugin-svelte3": "^3.2.0",
"eslint-plugin-vue": "^8.0.0",
"estree-walker": "^3.0.0",
"locate-character": "^2.0.5",
"magic-string": "^0.25.7",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^2.3.0",
"string-replace-loader": "^3.0.1",
"svelte": "^3.37.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.0",
"vue-eslint-parser": "^8.0.0"
}
}