-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
100 lines (100 loc) · 2.84 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
{
"name": "ember-template-imports",
"version": "4.1.3",
"description": "Tooling support for gjs and gts component authoring",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "[email protected]:ember-template-imports/ember-template-imports.git"
},
"license": "MIT",
"author": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:!(fix)'",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ember serve",
"test": "npm-run-all lint test:*",
"test:ember": "ember test",
"test:babel": "vitest --run",
"test:ember-compatibility": "ember try:each"
},
"dependencies": {
"broccoli-stew": "^3.0.0",
"content-tag": "^2.0.1",
"ember-cli-version-checker": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@ember/optional-features": "^2.0.0",
"@ember/string": "^3.0.1",
"@ember/test-helpers": "^3.2.0",
"@embroider/test-setup": "^3.0.2",
"@glimmer/component": "^1.1.2",
"@glimmer/syntax": "0.84.3",
"@glimmer/tracking": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-plugin-ember-template-compilation": "^2.2.5",
"ember-auto-import": "^2.6.3",
"ember-cli": "~4.12.2",
"ember-cli-babel": "^8.2.0",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^6.3.0",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-load-initializers": "^2.1.2",
"ember-qunit": "^8.0.1",
"ember-resolver": "^10.0.0",
"ember-source": "~4.8.2",
"ember-source-channel-url": "^3.0.0",
"ember-try": "^3.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ember": "^11.11.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"loader.js": "^4.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"qunit": "^2.14.0",
"qunit-dom": "^3.0.0",
"release-plan": "^0.9.0",
"typescript": "^4.9.5",
"vitest": "^2.0.2",
"webpack": "^5.64.4"
},
"packageManager": "[email protected]",
"engines": {
"node": "16.* || >= 18"
},
"volta": {
"node": "18.20.4",
"pnpm": "9.11.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"main": "ember-addon-main.js",
"configPath": "tests/dummy/config",
"before": [
"ember-cli-htmlbars",
"ember-cli-babel"
]
}
}