astro-eslint-parser 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +98 -98
package/package.json
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "astro-eslint-parser",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Astro component parser for ESLint",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"lib"
|
|
8
|
+
],
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": "^14.17.0 || >=16.0.0"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"prebuild": "npm run -s clean",
|
|
14
|
+
"build": "tsc --project ./tsconfig.build.json",
|
|
15
|
+
"clean": "rimraf .nyc_output lib coverage",
|
|
16
|
+
"lint": "eslint . --ext .js,.ts,.json,.astro,.svelte",
|
|
17
|
+
"eslint-fix": "npm run lint -- --fix",
|
|
18
|
+
"test": "mocha --require ts-node/register \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
|
|
19
|
+
"cover": "nyc --reporter=lcov npm run test",
|
|
20
|
+
"debug": "mocha --require ts-node/register/transpile-only \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
|
|
21
|
+
"preversion": "npm run lint && npm test",
|
|
22
|
+
"update-fixtures": "DEBUG='astro-eslint-parser' ts-node --transpile-only ./tools/update-fixtures.ts",
|
|
23
|
+
"debug-parser": "ts-node --transpile-only ./tools/parser-test.ts",
|
|
24
|
+
"eslint-playground": "eslint tests/fixtures --ext .astro --config .eslintrc-for-playground.js --format codeframe",
|
|
25
|
+
"benchmark": "ts-node --transpile-only benchmark/index.ts"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/ota-meshi/astro-eslint-parser.git"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"astro",
|
|
33
|
+
"astrojs",
|
|
34
|
+
"eslint",
|
|
35
|
+
"parser"
|
|
36
|
+
],
|
|
37
|
+
"author": "Yosuke Ota",
|
|
38
|
+
"funding": "https://github.com/sponsors/ota-meshi",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/ota-meshi/astro-eslint-parser/issues"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/ota-meshi/astro-eslint-parser#readme",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@astrojs/compiler": "^0.18.0",
|
|
46
|
+
"@typescript-eslint/types": "^5.25.0",
|
|
47
|
+
"debug": "^4.3.4",
|
|
48
|
+
"eslint-visitor-keys": "^3.0.0",
|
|
49
|
+
"espree": "^9.0.0",
|
|
50
|
+
"mdast-util-from-markdown": "^1.2.0",
|
|
51
|
+
"synckit": "^0.7.1",
|
|
52
|
+
"yaml": "^2.1.1"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@ota-meshi/eslint-plugin": "^0.11.0",
|
|
56
|
+
"@types/benchmark": "^2.1.1",
|
|
57
|
+
"@types/chai": "^4.3.0",
|
|
58
|
+
"@types/debug": "^4.1.7",
|
|
59
|
+
"@types/eslint": "^8.0.0",
|
|
60
|
+
"@types/eslint-scope": "^3.7.0",
|
|
61
|
+
"@types/eslint-visitor-keys": "^1.0.0",
|
|
62
|
+
"@types/mocha": "^9.0.0",
|
|
63
|
+
"@types/node": "^16.0.0",
|
|
64
|
+
"@types/semver": "^7.3.9",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
66
|
+
"@typescript-eslint/parser": "^5.4.0",
|
|
67
|
+
"astro-eslint-parser": ">=0.1.0",
|
|
68
|
+
"benchmark": "^2.1.4",
|
|
69
|
+
"chai": "^4.3.4",
|
|
70
|
+
"code-red": "^0.2.3",
|
|
71
|
+
"eslint": "^8.15.0",
|
|
72
|
+
"eslint-config-prettier": "^8.3.0",
|
|
73
|
+
"eslint-formatter-codeframe": "^7.32.1",
|
|
74
|
+
"eslint-plugin-astro": "^0.14.0",
|
|
75
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
76
|
+
"eslint-plugin-json-schema-validator": "^3.0.0",
|
|
77
|
+
"eslint-plugin-jsonc": "^2.0.0",
|
|
78
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
79
|
+
"eslint-plugin-node": "^11.1.0",
|
|
80
|
+
"eslint-plugin-node-dependencies": "^0.9.0",
|
|
81
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
82
|
+
"eslint-plugin-react": "^7.29.4",
|
|
83
|
+
"eslint-plugin-regexp": "^1.5.0",
|
|
84
|
+
"eslint-plugin-svelte": "^2.0.0",
|
|
85
|
+
"estree-walker": "^3.0.0",
|
|
86
|
+
"locate-character": "^2.0.5",
|
|
87
|
+
"magic-string": "^0.26.0",
|
|
88
|
+
"mocha": "^10.0.0",
|
|
89
|
+
"mocha-chai-jest-snapshot": "^1.1.3",
|
|
90
|
+
"nyc": "^15.1.0",
|
|
91
|
+
"prettier": "^2.0.5",
|
|
92
|
+
"prettier-plugin-astro": "^0.1.0-0",
|
|
93
|
+
"prettier-plugin-svelte": "^2.7.0",
|
|
94
|
+
"semver": "^7.3.5",
|
|
95
|
+
"string-replace-loader": "^3.0.3",
|
|
96
|
+
"svelte": "^3.48.0",
|
|
97
|
+
"ts-node": "^10.4.0",
|
|
98
|
+
"typescript": "~4.7.0"
|
|
99
|
+
}
|
|
100
100
|
}
|