This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 2.94 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "lerna",
"version": "2.3.1",
"description": "Tool for managing JavaScript projects with multiple packages",
"main": "lib/index.js",
"files": [
"bin",
"lib",
"src",
".babelrc"
],
"scripts": {
"build": "babel src -d lib",
"dev": "babel -w src -d lib",
"lint": "eslint . --ignore-path .gitignore",
"fix": "npm run lint -- --fix",
"preintegration": "npm pack",
"integration": "jest --config test/config/integration.json",
"pretest": "npm run lint -- --cache",
"test": "jest",
"ci": "npm test -- --coverage --verbose && npm run integration",
"prepublish": "npm run build",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git"
},
"author": "Sebastian McKenzie <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lerna/lerna/issues"
},
"homepage": "https://lernajs.io/",
"dependencies": {
"async": "^1.5.0",
"chalk": "^2.1.0",
"cmd-shim": "^2.0.2",
"columnify": "^1.5.4",
"command-join": "^2.0.0",
"conventional-changelog-cli": "^1.3.2",
"conventional-recommended-bump": "^1.0.1",
"dedent": "^0.7.0",
"execa": "^0.8.0",
"find-up": "^2.1.0",
"fs-extra": "^4.0.1",
"get-port": "^3.2.0",
"glob": "^7.1.2",
"glob-parent": "^3.1.0",
"globby": "^6.1.0",
"graceful-fs": "^4.1.11",
"hosted-git-info": "^2.5.0",
"inquirer": "^3.2.2",
"is-ci": "^1.0.10",
"load-json-file": "^3.0.0",
"lodash": "^4.17.4",
"minimatch": "^3.0.4",
"npmlog": "^4.1.2",
"p-finally": "^1.0.0",
"path-exists": "^3.0.0",
"read-cmd-shim": "^1.0.1",
"read-pkg": "^2.0.0",
"rimraf": "^2.6.1",
"safe-buffer": "^5.1.1",
"semver": "^5.4.1",
"signal-exit": "^3.0.2",
"strong-log-transformer": "^1.0.6",
"temp-write": "^3.3.0",
"write-file-atomic": "^2.3.0",
"write-json-file": "^2.2.0",
"write-pkg": "^3.1.0",
"yargs": "^8.0.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0"
},
"bin": {
"lerna": "./bin/lerna.js"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-babel": "^7.0.2",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-node": "^5.1.1",
"file-url": "^2.0.2",
"jest": "^19.0.2",
"normalize-newline": "^3.0.0",
"normalize-path": "^2.1.1",
"replacestream": "^4.0.2",
"tempy": "^0.1.0",
"touch": "^3.1.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures"
],
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"setupFiles": [
"<rootDir>/test/helpers/env.js"
],
"testEnvironment": "node",
"testMatch": [
"**/test/*.js"
]
},
"engines": {
"node": ">= 4"
}
}