-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.95 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
{
"name": "yarn-plugin-licenses",
"version": "0.15.0",
"description": "Yarn Berry plugin that adds `yarn licenses` commands",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mhassan1/yarn-plugin-licenses.git"
},
"engines": {
"yarn": "^4.0.0"
},
"keywords": [
"yarn",
"berry",
"plugin",
"licenses"
],
"author": "Marc Hassan",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhassan1/yarn-plugin-licenses/issues"
},
"homepage": "https://github.com/mhassan1/yarn-plugin-licenses#readme",
"scripts": {
"test": "jest",
"build": "builder build plugin",
"prettier-check": "prettier --check .",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "yarn ts-check && yarn eslint && yarn prettier-check",
"eslint": "eslint --ext .ts .",
"ts-check": "tsc --noEmit --skipLibCheck",
"prepare": "yarn build",
"preversion": "yarn lint",
"version": "yarn format && yarn build && sed -Ei '' \"s/(yarn-plugin-licenses\\/).+(\\/bundles)/\\1v$npm_package_version\\2/g\" README.md && git add -A",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@yarnpkg/builder": "^4.0.0",
"@yarnpkg/cli": "^4.0.0",
"@yarnpkg/core": "^4.0.0",
"@yarnpkg/fslib": "^3.0.0",
"@yarnpkg/libzip": "^3.0.0",
"@yarnpkg/parsers": "^3.0.0",
"@yarnpkg/plugin-pnp": "^4.0.0",
"clipanion": "^4.0.0-rc.2",
"hosted-git-info": "^6.1.1"
},
"devDependencies": {
"@types/hosted-git-info": "^3.0.2",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@yarnpkg/plugin-npm": "^3.0.0",
"@yarnpkg/plugin-pack": "^4.0.0",
"eslint": "^8.44.0",
"eslint-plugin-jsdoc": "^39.9.1",
"jest": "^29.6.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
},
"packageManager": "yarn@4.0.0"
}