-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
{
"name": "eslint-plugin-ember-template-lint",
"version": "0.21.0",
"description": "Provide linting for ember template",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Patrick Pircher",
"main": "lib/index.js",
"repository": "patricklx/eslint-plugin-ember-template-lint",
"scripts": {
"test": "pnpm run /test:.*/",
"test:jest": "jest",
"lint:js": "eslint --cache lib tests",
"lint:js:fix": "eslint --cache lib tests --fix",
"test-watch": "jest --watchAll"
},
"dependencies": {
"@glimmer/syntax": "^0.93.0",
"@typescript-eslint/parser": "^8.16.0",
"@typescript-eslint/typescript-estree": "^8.16.0",
"ember-eslint-parser": "^0.5.6",
"ember-template-recast": "^6.1.5",
"ember-template-lint": "^6.0.0",
"prettier-linter-helpers": "^1.0.0",
"synckit": "^0.9.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"ember-template-lint": "^6.0.0"
},
"devDependencies": {
"ember-template-lint-plugin-prettier": "^5.0.0",
"eslint": "^8.41.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-n": "^17.14.0",
"jest": "^29.5.0"
},
"jest": {
"testMatch": [
"**/tests/**/*.js"
]
},
"engines": {
"node": ">=12.0.0"
},
"license": "ISC",
"files": [
"lib/**/*.js"
]
}