-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "update-workspace-dependency",
"version": "1.0.14",
"description": "A command-line utility to update a specified dependency or devDependency across all workspaces in an npm monorepo.",
"main": "index.js",
"bin": {
"update-workspace-dependency": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Harris Sidiropoulos",
"license": "ISC",
"keywords": [
"npm",
"monorepo",
"workspace",
"dependency",
"update"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HarrisSidiropoulos/update-workspace-dependency.git"
},
"dependencies": {
"glob": "^9.3.4",
"parse-package-name": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-array-func": "^3.1.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-yml": "^1.5.0",
"prettier": "^2.8.7"
}
}