forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "@lerna/create",
"version": "3.4.1",
"description": "Create a new lerna-managed package",
"keywords": [
"lerna",
"command"
],
"homepage": "https://github.com/lerna/lerna",
"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"
},
"scripts": {
"test": "echo \"Run tests from root\" && exit 1"
},
"dependencies": {
"@lerna/child-process": "file:../../core/child-process",
"@lerna/command": "file:../../core/command",
"@lerna/npm-conf": "file:../../utils/npm-conf",
"@lerna/validation-error": "file:../../core/validation-error",
"camelcase": "^4.1.0",
"dedent": "^0.7.0",
"fs-extra": "^7.0.0",
"globby": "^8.0.1",
"init-package-json": "^1.10.3",
"npm-package-arg": "^6.0.0",
"pify": "^3.0.0",
"semver": "^5.5.0",
"slash": "^1.0.0",
"validate-npm-package-license": "^3.0.3",
"validate-npm-package-name": "^3.0.0",
"whatwg-url": "^7.0.0"
}
}