forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.9 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
{
"name": "lerna",
"version": "2.0.0-beta.38",
"description": "Tool for managing JavaScript projects with multiple packages",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"coverage": "nyc --reporter=lcov npm run test",
"dev": "babel -w src -d lib",
"lint": "eslint src test",
"fix": "eslint src test --fix",
"test": "mocha -t 20000",
"ci": "npm run lint && cross-env DEBUG_CALLS=true npm run test",
"prepublish": "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": "^1.1.1",
"cmd-shim": "^2.0.2",
"columnify": "^1.5.4",
"command-join": "^2.0.0",
"cross-spawn": "^4.0.0",
"glob": "^7.0.6",
"inquirer": "^3.0.1",
"lodash": "^4.17.4",
"meow": "^3.7.0",
"minimatch": "^3.0.0",
"mkdirp": "^0.5.1",
"normalize-path": "^2.0.1",
"object-assign-sorted": "^2.0.1",
"path-exists": "^2.1.0",
"progress": "^1.1.8",
"read-cmd-shim": "^1.0.1",
"rimraf": "^2.4.4",
"semver": "^5.1.0",
"signal-exit": "^3.0.2"
},
"bin": {
"lerna": "./bin/lerna.js"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"cross-env": "^3.1.4",
"eslint": "^2.3.0",
"eslint-config-babel": "^1.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.5.0",
"fs-extra": "^0.30.0",
"mocha": "^2.4.5",
"normalize-newline": "^2.1.0",
"nyc": "^10.1.2"
},
"engines": {
"node": ">= 4"
}
}