-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.65 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.65 KB
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
{
"name": "ember-template-recast",
"version": "6.1.5",
"description": "Non-destructive template transformer.",
"keywords": [
"codemod",
"ember",
"glimmer",
"handlebars",
"recast",
"templates"
],
"homepage": "https://github.com/ember-template-lint/ember-template-recast",
"bugs": "https://github.com/ember-template-lint/ember-template-recast/issues",
"repository": "github:ember-template-lint/ember-template-recast",
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"main": "dist/index.js",
"bin": "dist/bin.js",
"files": [
"dist/",
"!dist/**/*.test.*"
],
"scripts": {
"build": "tsc",
"format": "prettier . --cache --write",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" && pnpm format",
"lint:format": "prettier . --cache --check",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"perf:benchmark": "node scripts/benchmark.mjs",
"prepare": "pnpm build",
"test": "jest"
},
"dependencies": {
"@glimmer/syntax": ">= 0.84.3",
"async-promise-queue": "^1.0.5",
"colors": "^1.4.0",
"commander": "^8.3.0",
"globby": "^11.0.3",
"ora": "^5.4.0",
"slash": "^3.0.0",
"tmp": "^0.2.1",
"workerpool": "^6.4.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@eslint/js": "^9.39.4",
"@glimmer/reference": "^0.84.3",
"@glimmer/validator": "^0.84.3",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.37",
"@types/tmp": "^0.2.6",
"@types/workerpool": "^6.1.1",
"benchmark": "^2.1.4",
"broccoli-test-helper": "^2.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"execa": "^5.1.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"outdent": "^0.8.0",
"prettier": "^3.8.1",
"release-plan": "^0.16.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.* || >= 22"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"overrides": {
"@glimmer/reference": "0.84.3",
"@glimmer/syntax": "0.84.3",
"@glimmer/validator": "0.84.3"
},
"override-nodes": [
"@glimmer/* pinned for typescript reasons",
"TODO: We should test against a range of @glimmer/syntaxes -- or bump to 1.0"
]
}
}