-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.88 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.88 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
{
"name": "prettier-plugin-ember-template-tag",
"version": "0.3.2",
"description": "A prettier plugin for formatting Ember template tags",
"keywords": [
"ember",
"ember template imports",
"gjs",
"gts",
"prettier",
"template tag"
],
"author": {
"email": "kmenne@gmail.com",
"name": "Krystan HuffMenne"
},
"type": "commonjs",
"main": "dist/prettier-plugin-ember-template-tag.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:gitKrystan/prettier-plugin-ember-template-tag.git"
},
"homepage": "https://github.com/gitKrystan/prettier-plugin-ember-template-tag",
"bugs": {
"url": "https://github.com/gitKrystan/prettier-plugin-ember-template-tag/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc && vite build",
"example": "vite build && ./node_modules/.bin/prettier --plugin . --write examples/example.gjs",
"example-ts": "vite build && ./node_modules/.bin/prettier --plugin . --write examples/example.gts",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"",
"lint:eslint": "eslint . --cache",
"lint:eslint:fix": "eslint . --fix",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:ts": "tsc --project tsconfig.lint.json",
"release": "release-it",
"release:ci": "release-it --ci",
"release:debug": "release-it --verbose --dry-run",
"test:all": "concurrently \"pnpm:test:run\" \"pnpm:example\" \"pnpm:example-ts\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"dependencies": {
"@babel/core": "^7.21.8",
"@glimmer/syntax": "^0.84.3",
"ember-cli-htmlbars": "^6.2.0",
"ember-template-imports": "^3.4.2",
"prettier": "^2.8.8"
},
"devDependencies": {
"@babel/types": "^7.21.5",
"@glimmer/reference": "^0.84.3",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@tsconfig/node16": "^1.0.4",
"@tsconfig/strictest": "^2.0.1",
"@types/babel__core": "^7.20.0",
"@types/eslint": "^8.40.0",
"@types/node": "^20.2.3",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitest/ui": "^0.31.1",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^44.2.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-vitest": "^0.2.3",
"prettier-plugin-jsdoc": "^0.4.2",
"release-it": "^15.10.3",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vitest": "^0.31.1"
},
"engines": {
"node": "16.* || 18.* || >= 20"
},
"volta": {
"node": "16.20.0",
"pnpm": "8.5.1"
}
}