-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.49 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
{
"name": "@lint-todo/ember-template-lint-formatter-todo",
"version": "2.0.1",
"description": "An Ember Template Lint formatter for todos",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lint-todo/ember-template-lint-formatter-todo.git"
},
"license": "MIT",
"author": "Steve Calvert <steve.calvert@gmail.com>",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run test:vitest",
"test:vitest": "vitest run"
},
"dependencies": {
"@lint-todo/utils": "^13.0.2",
"chalk": "^4.0.0",
"columnify": "^1.6.0",
"strip-ansi": "6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@scalvert/bin-tester": "^2.0.0",
"@types/columnify": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"date-fns": "^2.28.0",
"ember-template-lint": "^4.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"fs-extra": "^10.0.0",
"prettier": "^2.1.2",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"tsup": "^5.12.1",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vitest": "^0.31.0"
},
"peerDependencies": {
"ember-template-lint": "^4.3.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"bugs": {
"url": "https://github.com/scalvert/ember-template-lint-formatter-todo/issues"
},
"homepage": "https://github.com/scalvert/ember-template-lint-formatter-todo#readme",
"keywords": [
"ember-template-lint",
"ember-template-lint-formatter"
],
"engines": {
"node": ">=14"
},
"volta": {
"node": "14.19.1",
"npm": "8.5.3"
}
}