-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "@lint-todo/migrator",
"version": "1.0.3",
"description": "A migration tool for lint todos",
"repository": {
"type": "git",
"url": "https://github.com/lint-todo/migrator.git"
},
"license": "MIT",
"author": "scalvert <[email protected]>",
"bin": "./bin/index.js",
"scripts": {
"test": "npm-run-all lint test:*",
"test:jest": "jest",
"lint": "eslint ."
},
"dependencies": {
"@lint-todo/utils": "^11.0.0",
"fs-extra": "^10.0.0",
"legacy-todo-utils": "npm:@ember-template-lint/[email protected]",
"log-symbols": "^4.0.0",
"meow": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"tmp": "^0.2.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "16.13.0"
}
}