forked from mhassan1/yarn-plugin-licenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "yarn-plugin-licenses",
"version": "1.0.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-json.git"
},
"engines": {
"yarn": "^3.0.0"
},
"keywords": [
"yarn",
"berry",
"plugin",
"licenses"
],
"author": "Sarah Sporck",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhassan1/yarn-plugin-licenses-json/issues"
},
"homepage": "https://github.com/mhassan1/yarn-plugin-licenses-json#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",
"next-version": "yarn format && yarn build && sed -Ei '' \"s/(yarn-plugin-licenses-json\\/).+(\\/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.1",
"@yarnpkg/core": "^4.0.1",
"@yarnpkg/fslib": "^3.0.1",
"@yarnpkg/libzip": "^3.0.0",
"@yarnpkg/parsers": "^3.0.0",
"@yarnpkg/plugin-pnp": "^4.0.1",
"clipanion": "4.0.0-rc.2",
"format-to-json": "^3.0.3",
"hosted-git-info": "^7.0.1"
},
"devDependencies": {
"@types/hosted-git-info": "^3.0.4",
"@types/jest": "^29.5.7",
"@types/node": "^18.18.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@yarnpkg/plugin-npm": "^3.0.0",
"@yarnpkg/plugin-pack": "^4.0.0",
"eslint": "^8.53.0",
"eslint-plugin-jsdoc": "^46.8.2",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "~5.2.2"
},
"packageManager": "[email protected]"
}