forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@lerna/run",
"version": "4.0.0",
"description": "Run an npm script in each package that contains that script",
"keywords": [
"lerna",
"command"
],
"homepage": "https://github.com/lerna/lerna/tree/master/commands/run#readme",
"license": "MIT",
"author": {
"name": "Daniel Stockman",
"url": "https://github.com/evocateur"
},
"files": [
"command.js",
"index.js"
],
"main": "index.js",
"engines": {
"node": ">= 10.18.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git",
"directory": "commands/run"
},
"scripts": {
"test": "echo \"Run tests from root\" && exit 1"
},
"dependencies": {
"@lerna/command": "file:../../core/command",
"@lerna/filter-options": "file:../../core/filter-options",
"@lerna/npm-run-script": "file:../../utils/npm-run-script",
"@lerna/output": "file:../../utils/output",
"@lerna/profiler": "file:../../utils/profiler",
"@lerna/run-topologically": "file:../../utils/run-topologically",
"@lerna/timer": "file:../../utils/timer",
"@lerna/validation-error": "file:../../core/validation-error",
"p-map": "^4.0.0"
}
}