-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "yarn-plugin-outdated",
"description": "Yarn plugin to show outdated dependencies.",
"author": "Mark Skelton",
"license": "ISC",
"repository": "github:mskelton/yarn-plugin-outdated",
"homepage": "https://github.com/mskelton/yarn-plugin-outdated#readme",
"bugs": {
"url": "https://github.com/mskelton/yarn-plugin-outdated/issues"
},
"main": "src/index.ts",
"packageManager": "[email protected]",
"scripts": {
"build": "builder build plugin",
"lint": "eslint .",
"format": "prettier --write .",
"test": "playwright test",
"ts": "tsc"
},
"dependencies": {
"@types/node": "^20.10.3",
"@yarnpkg/cli": "^4.0.2",
"@yarnpkg/core": "^4.0.2",
"@yarnpkg/plugin-essentials": "^4.0.2",
"@yarnpkg/plugin-git": "^3.0.0",
"clipanion": "^4.0.0-rc.2",
"hosted-git-info": "^7.0.1",
"micromatch": "^4.0.5",
"semver": "^7.5.4",
"typanion": "^3.14.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@mskelton/eslint-config": "^7.1.0",
"@playwright/test": "^1.27.1",
"@types/hosted-git-info": "^3.0.2",
"@types/micromatch": "^4.0.2",
"@types/semver": "^7.3.9",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@yarnpkg/builder": "^4.0.0",
"@yarnpkg/fslib": "^3.0.1",
"@yarnpkg/parsers": "^3.0.0",
"eslint": "^8.6.0",
"eslint-plugin-sort": "^2.3.1",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"prettier": "^2.5.1",
"tar-fs": "^2.1.1",
"typescript": "^4.6.4",
"zlib": "^1.0.5"
}
}