-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "ember-eslint-parser",
"version": "0.5.3",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "[email protected]:ember-tooling/ember-eslint-parser.git"
},
"license": "ISC",
"author": "",
"exports": {
".": "./src/parser/gjs-gts-parser.js",
"./noop": "./src/preprocessor/noop.js"
},
"main": "src/parser/gjs-gts-parser.js",
"files": [
"src"
],
"scripts": {
"test": "vitest run",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:js": "eslint . --max-warnings=0",
"lint:package": "pnpm publint",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js:fix": "eslint . --fix --max-warnings=0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/scope-manager": "^7.1.0",
"@typescript-eslint/visitor-keys": "^7.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"prettier": "^3.2.5",
"publint": "^0.2.6",
"release-plan": "^0.8.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"dependencies": {
"@babel/eslint-parser": "^7.23.10",
"@glimmer/syntax": "^0.92.0",
"content-tag": "^2.0.1",
"eslint-scope": "^7.2.2",
"html-tags": "^3.3.1"
},
"engines": {
"node": ">=16.0.0"
},
"pnpm": {
"overrides": {
"ember-eslint-parser": "workspace:*"
}
},
"peerDependencies": {
"@babel/core": "^7.23.6",
"@typescript-eslint/parser": "*"
},
"peerDependenciesMeta": {
"@typescript-eslint/parser": {
"optional": true
}
}
}