forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.4 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
118
119
120
121
122
123
124
125
126
127
{
"name": "lerna",
"version": "3.0.0-alpha.0",
"description": "Tool for managing JavaScript projects with multiple packages",
"main": "src/index.js",
"files": [
"bin",
"src"
],
"scripts": {
"ci": "npm test -- --ci --coverage --verbose && npm run integration -- --ci",
"fix": "npm run lint -- --fix",
"integration": "cross-env LC_ALL=en-US NODE_ENV=test jest --config jest.integration.js",
"lint": "eslint . --ignore-path .gitignore --cache",
"pretest": "npm run lint",
"test": "cross-env LC_ALL=en-US NODE_ENV=test jest",
"test:watch": "cross-env LC_ALL=en-US NODE_ENV=test jest --watchAll --no-watchman",
"test:watch-integration": "npm run integration -- --watchAll --no-watchman"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git"
},
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lerna/lerna/issues"
},
"homepage": "https://lernajs.io/",
"dependencies": {
"async": "^2.6.0",
"chalk": "^2.3.1",
"cmd-shim": "^2.0.2",
"columnify": "^1.5.4",
"command-join": "^2.0.0",
"conventional-changelog-angular": "^1.6.4",
"conventional-changelog-core": "^2.0.3",
"conventional-recommended-bump": "^2.0.4",
"dedent": "^0.7.0",
"escape-string-regexp": "^1.0.5",
"execa": "^0.9.0",
"find-up": "^2.1.0",
"fs-extra": "^5.0.0",
"get-port": "^3.2.0",
"get-stream": "^3.0.0",
"glob-parent": "^3.1.0",
"globby": "^7.1.1",
"graceful-fs": "^4.1.11",
"import-local": "^1.0.0",
"inquirer": "^5.1.0",
"is-ci": "^1.0.10",
"load-json-file": "^4.0.0",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"npm-package-arg": "^6.0.0",
"npmlog": "^4.1.2",
"p-finally": "^1.0.0",
"p-map": "^1.2.0",
"p-map-series": "^1.0.0",
"p-reduce": "^1.0.0",
"p-waterfall": "^1.0.0",
"package-json": "^4.0.1",
"path-exists": "^3.0.0",
"read-cmd-shim": "^1.0.1",
"read-pkg": "^3.0.0",
"rimraf": "^2.6.1",
"safe-buffer": "^5.1.1",
"semver": "^5.5.0",
"signal-exit": "^3.0.2",
"slash": "^1.0.0",
"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": "^11.0.0"
},
"bin": {
"lerna": "./bin/lerna.js"
},
"devDependencies": {
"cross-env": "^5.0.5",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.6.0",
"fast-async": "^6.3.0",
"file-url": "^2.0.2",
"jest": "^22.3.0",
"normalize-newline": "^3.0.0",
"normalize-path": "^2.1.1",
"path-key": "^2.0.1",
"prettier": "^1.9.2",
"tempy": "^0.2.1",
"touch": "^3.1.0"
},
"yargs": {
"populate--": true
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures"
],
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"setupFiles": [
"<rootDir>/test/helpers/silence-logging.js"
],
"testEnvironment": "node",
"testMatch": [
"**/test/*.js"
]
},
"engines": {
"node": ">= 6.9.0"
}
}