forked from JamieMason/syncpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.61 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "syncpack",
"description": "Manage multiple package.json files, such as in Lerna Monorepos and Yarn/Pnpm Workspaces",
"version": "5.7.11",
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)",
"bin": {
"syncpack": "dist/bin.js",
"syncpack-fix-mismatches": "dist/bin-fix-mismatches.js",
"syncpack-format": "dist/bin-format.js",
"syncpack-list-mismatches": "dist/bin-list-mismatches.js",
"syncpack-list": "dist/bin-list.js",
"syncpack-set-semver-ranges": "dist/bin-set-semver-ranges.js",
"syncpack-lint-semver-ranges": "dist/bin-lint-semver-ranges.js"
},
"bugs": "https://github.com/JamieMason/syncpack/issues",
"contributors": [
"Alex Hayton (https://github.com/AlexHayton)",
"Aparajita Fishman (https://github.com/aparajita)",
"Jamie Mason (https://github.com/JamieMason)",
"Luis Vieira (https://github.com/luisvieiragmr)",
"Marais Rossouw (https://github.com/maraisr)",
"Matt Sprague (https://github.com/uforic)"
],
"dependencies": {
"chalk": "4.1.0",
"commander": "6.1.0",
"cosmiconfig": "7.0.0",
"expect-more": "0.8.1",
"fs-extra": "9.1.0",
"glob": "7.1.6",
"read-yaml-file": "2.0.0",
"semver": "7.3.4"
},
"devDependencies": {
"@types/fs-extra": "9.0.6",
"@types/glob": "7.1.3",
"@types/jest": "26.0.20",
"@types/mock-fs": "4.13.0",
"@types/node": "14.14.22",
"@types/semver": "7.3.4",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"eslint": "7.18.0",
"expect-more-jest": "5.2.1",
"jest": "26.6.3",
"mock-fs": "4.13.0",
"organize-imports-cli": "0.8.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.0",
"typescript": "4.1.3"
},
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"homepage": "https://github.com/JamieMason/syncpack#readme",
"keywords": [
"cli",
"dependency-manager",
"lerna",
"lernajs",
"monorepo",
"multi-package",
"nodejs",
"npm",
"package",
"package-json",
"packages",
"pnpm",
"semver",
"workspace",
"yarn"
],
"license": "MIT",
"main": "syncpack",
"repository": "JamieMason/syncpack",
"scripts": {
"build": "tsc --project .",
"format": "npm run format:imports && npm run format:source",
"format:imports": "organize-imports-cli ./src/**/*.ts",
"format:source": "prettier --write ./{src,test}/**/*.ts",
"lint": "eslint --fix --ext .ts,.tsx .",
"prebuild": "rimraf dist ./test/dist",
"prelint": "npm run format",
"prepack": "npm run build",
"test": "jest"
}
}