forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "@lerna/bootstrap",
"version": "3.17.0",
"description": "Link local packages together and install remaining package dependencies",
"keywords": [
"lerna",
"command"
],
"homepage": "https://github.com/lerna/lerna/tree/master/commands/bootstrap#readme",
"license": "MIT",
"author": {
"name": "Daniel Stockman",
"url": "https://github.com/evocateur"
},
"files": [
"command.js",
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">= 6.9.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git",
"directory": "commands/bootstrap"
},
"scripts": {
"test": "echo \"Run tests from root\" && exit 1"
},
"yargs": {
"populate--": true
},
"dependencies": {
"@lerna/command": "file:../../core/command",
"@lerna/filter-options": "file:../../core/filter-options",
"@lerna/has-npm-version": "file:../../utils/has-npm-version",
"@lerna/npm-install": "file:../../utils/npm-install",
"@lerna/package-graph": "file:../../core/package-graph",
"@lerna/pulse-till-done": "file:../../utils/pulse-till-done",
"@lerna/rimraf-dir": "file:../../utils/rimraf-dir",
"@lerna/run-lifecycle": "file:../../utils/run-lifecycle",
"@lerna/run-topologically": "file:../../utils/run-topologically",
"@lerna/symlink-binary": "file:../../utils/symlink-binary",
"@lerna/symlink-dependencies": "file:../../utils/symlink-dependencies",
"@lerna/validation-error": "file:../../core/validation-error",
"dedent": "^0.7.0",
"get-port": "^4.2.0",
"multimatch": "^3.0.0",
"npm-package-arg": "^6.1.0",
"npmlog": "^4.1.2",
"p-finally": "^1.0.0",
"p-map": "^2.1.0",
"p-map-series": "^1.0.0",
"p-waterfall": "^1.0.0",
"read-package-tree": "^5.1.6",
"semver": "^6.2.0"
}
}