forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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": "@lerna/publish",
"version": "4.0.0",
"description": "Publish packages in the current project",
"keywords": [
"lerna",
"command"
],
"homepage": "https://github.com/lerna/lerna/tree/master/commands/publish#readme",
"license": "MIT",
"author": {
"name": "Daniel Stockman",
"url": "https://github.com/evocateur"
},
"files": [
"command.js",
"index.js",
"lib",
"!lib/__mocks__"
],
"main": "index.js",
"engines": {
"node": ">= 10.18.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git",
"directory": "commands/publish"
},
"scripts": {
"test": "echo \"Run tests from root\" && exit 1"
},
"dependencies": {
"@lerna/check-working-tree": "file:../../utils/check-working-tree",
"@lerna/child-process": "file:../../core/child-process",
"@lerna/collect-updates": "file:../../utils/collect-updates",
"@lerna/command": "file:../../core/command",
"@lerna/describe-ref": "file:../../utils/describe-ref",
"@lerna/log-packed": "file:../../utils/log-packed",
"@lerna/npm-conf": "file:../../utils/npm-conf",
"@lerna/npm-dist-tag": "file:../../utils/npm-dist-tag",
"@lerna/npm-publish": "file:../../utils/npm-publish",
"@lerna/otplease": "file:../../core/otplease",
"@lerna/output": "file:../../utils/output",
"@lerna/pack-directory": "file:../../utils/pack-directory",
"@lerna/prerelease-id-from-version": "file:../../utils/prerelease-id-from-version",
"@lerna/prompt": "file:../../core/prompt",
"@lerna/pulse-till-done": "file:../../utils/pulse-till-done",
"@lerna/run-lifecycle": "file:../../utils/run-lifecycle",
"@lerna/run-topologically": "file:../../utils/run-topologically",
"@lerna/validation-error": "file:../../core/validation-error",
"@lerna/version": "file:../version",
"fs-extra": "^9.1.0",
"libnpmaccess": "^4.0.1",
"npm-package-arg": "^8.1.0",
"npm-registry-fetch": "^9.0.0",
"npmlog": "^4.1.2",
"p-map": "^4.0.0",
"p-pipe": "^3.1.0",
"pacote": "^11.2.6",
"semver": "^7.3.4"
}
}