-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "yarn-upgrade-all",
"version": "0.7.4",
"description": "This is a command line utility program to upgrade all the packages in your package.json to the latest version (potentially upgrading packages across major versions).",
"repository": "git@github.com:tylerlong/yarn-upgrade-all.git",
"license": "MIT",
"author": "Tyler Long <tyler4long@gmail.com>",
"contributors": [
{
"name": "Gorniaky",
"email": "hwss.s2@gmail.com",
"url": "http://github.com/Gorniaky"
}
],
"bin": {
"yarn-upgrade-all": "./build/index.js"
},
"scripts": {
"lint": "tsc --noEmit --target ESNext --moduleResolution NodeNext --module NodeNext ./src/*.ts && eslint --fix '**/*.{ts,tsx,js,jsx}' && prettier --write . && sort-package-json",
"prepublishOnly": "tsc",
"test": "tsx src/index.ts"
},
"dependencies": {
"color-loggers": "^0.3.1"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.0",
"tsx": "^4.16.5",
"ttpt": "^0.10.2",
"typescript": "^5.5.4"
},
"yarn-upgrade-all": {
"ignore": [
"eslint"
]
}
}